I am working on a Cure Wounds script in power card that will cast the cure wounds spell and apply the healing to the target token. I am having issues with the conversion of tokenmod syntax within a power card. I have the script working perfectly when using Tokenmod syntax but when I try to add and convert the normal syntax into Power Card it doesnt display anything and doesnt apply the healing to the target token. I could sure use some assistance as I am new to coding. Here is my normal Tokenmod script that works: /me @{selected|token_name} channels the healing power of Shar into @{target|Who is being healed?|token_name}. !token-mod {{ --set bar3_value|[[@{target|Who is being healed?|bar3}+?{Level|1|2|3|4|5|6|7|8|9}d8+@{selected|wisdom_mod}]]! --report all|"@{target|Who is being healed?|token_name} heals {bar3_value:abschange} points of health" --ids @{target|Who is being healed?|token_id} }} Here is the Power Card Script I am trying to get working: !power {{ --token_id|@{selected|token_name} --emote|** @{selected|token_name} channels the healing power of Shar into his target.. --Target|@{target||token_name} --api_token-mod _set bar3_value|[[@{target||token_name}?|bar3}+?{Level|1|2|3|4|5|6|7|8|9}d8+@{selected|wisdom_mod}]]! _report all|" --Target|@{target||token_name} heals {bar3_value:abschange} points of health" _ids --Target|@{target||token_name} }} Any assistance is appreciated!!