
!power {{ --whisper|GM --format|standard --name|Slam --leftsub|Action --rightsub|Reach 5ft etc... }}
Here is screen shots of what she meansSudain said:
Example powercard pasted below. The techincal issue is that there is a carriage return where there shouldn't be, but from the textbox of the 'abilities' section on the character sheet it's difficult to see. IMHO the power card is working properly; it took a one line string and parsed it till the <cr>. It has no idea the <cr> is out of order; the following text could be a description, or anything else. If powercards worked with 'talktomyself' then that would never show up for the players while I'm troubleshooting. But not knowing how that all works on the backend I don't know if that's possible.
.:: Working ::.:
!power --whisper|gm --format|standard --name|Slam --leftsub|Action --rightsub|Reach 5 ft. --Slam|[[1d20cs>20 + 14 ]] for damage [[ 1d8 + 10 ]] plus mummy rot --Mummy rot| Mummy Rot: curse and disease—slam; save Fort DC [[16]]; onset 1 minute; frequency 1/day; effect [[1d6]] Con and [[1d6]] Cha; cure —. Mummy rot is both a curse and disease and can only be cured if the curse is first removed, at which point the disease can be magically removed. Even after the curse element of mummy rot is lifted, a creature suffering from it cannot recover naturally over time. Anyone casting a conjuration (healing) spell on the afflicted creature must succeed on a DC [[20]] caster level check, or the spell is wasted and the healing has no effect. Anyone who dies from mummy rot turns to dust and cannot be raised without a resurrection or greater magic.
.:: Broken Example ::.
!power --whisper|gm --format|standard --name|Slam --leftsub|Action --rightsub|Reach 5 ft. --Slam|[[1d20cs>20 + 14 ]] for damage [[ 1d8 + 10 ]] plus mummy rot --Mummy rot| Mummy Rot: curse and disease—slam; save Fort DC [[16]]; onset 1 minute; frequency 1/day; effect [[1d6]] Con and [[1d6]] Cha; cure —. Mummy rot is both a curse and disease and can only be cured if the curse is first removed, at which point the disease can be magically removed. Even after the curse element of mummy rot is lifted, a creature suffering
from it cannot recover naturally over time. Anyone casting a conjuration (healing) spell on the afflicted creature must succeed on a DC [[20]] caster level check, or the spell is wasted and the healing has no effect. Anyone who dies from mummy rot turns to dust and cannot be raised without a resurrection or greater magic.
whisper - Sends the title box and body of the power card to the designated target. For example --whisper|GM would send the power card to the GM.
Vince said:
I believe Whisper is the command your looking for. Top of this thread has the command info about powercards. Cheers
whisper - Sends the title box and body of the power card to the designated target. For example --whisper|GM would send the power card to the GM.
Sudain said:
Hello again! I found a quirk that I wasn't expecting, though it's probably a detail that I've never appreciated until now. If I add an 'fx' line after the powercard it will work if I select my 'target'. If I escape out (because I want the information on the powercard, and not the fx) the powercard doesn't show up. Is that expected, or is there a workaround, or is something else I don't appreciate at play?
Thank you again for all your hard work. :)
!power { ...awesome powercard stuff here... }
/fx 120Breath @{selected|token_id} @{target|token_id}
Edit: ... Derp. I can 'talktomyself' as a workaround.
Sudain said:
I'll check into that Craven! Thank you.
As far as the checkmark goes I think unicode symbols will display based upon what system it's being loaded from. I blaim MS and apple.
Craven said:
I have my power card spell book macro setup and on my mac it looks like this.
The green check box with the white check mark is a Unicode symbol.
But on windows machine it looks like this
Anyone know how or even if i can fix this?
Can you explain why the following code will crash the api when used on some characters, but work perfectly fine on others? Taking off the alterbars conditional lets it work on every character, but doesn't apply damage. All characters have their health on bar 3.
TypeError: Cannot read property 'get' of undefined!power {{ --charid|@{character_id} --emote|@{character_name} looses an arrow at @{target|character_name} --format|encounter --name|@{repeating_attack_$0_name} --title|@{repeating_attack_$0_content} --leftsub|@{repeating_attack_$0_attack_damage_dice}@{repeating_attack_$0_attack_damage_die} + @{dexterity_mod} + @{repeating_attack_$0_attack_damage_bonus} --rightsub|@{repeating_attack_$0_attack_damage_type} --hroll| [[ [$Atk] 1d20 @{repeating_attack_$0_to_hit}]] [[ [$Dmg] @{repeating_attack_$0_attack_damage_dice}@{repeating_attack_$0_attack_damage_die} + @{dexterity_mod} + @{repeating_attack_$0_attack_damage_bonus}]] [[ [$CDmg] [[@{repeating_attack_$0_attack_damage_dice}*2]]@{repeating_attack_$0_attack_damage_die} + @{dexterity_mod} + @{repeating_attack_$0_attack_damage_bonus}]] --?? $Atk.base == 1 AND @{target|HP} > 0 ?? !CritMiss:|@{target|character_name} completely misses. --?? $Atk.base > 1 AND $Atk.total <= [[@{target|AC}/2]] AND @{target|HP} > 0 ?? !Miss:|@{target|character_name} dodges @{character_name}'s arrow. --?? $Atk.total > [[@{target|AC}/2]] AND $Atk.total < @{target|AC} AND @{target|HP} > 0 ?? !Armor:|@{character_name}'s arrow helplessly plinks off of @{target|character_name}'s @{repeating_armor_$0_name} armor. --?? $Atk.total >= @{target|AC} ?? alterbar1|_target|@{target|token_id} _bar|3 _amount|-[^Dmg] _show|none --?? $Atk.total >= @{target|AC} AND @{target|HP} > 0 ?? !Hit:|@{character_name}'s arrow strikes @{target|character_name} doing [^Dmg] damage. --?? $Atk.base == 20 AND @{target|HP} > 0 ?? !Hit:|@{character_name}'s arrow pierces @{target|character_name} in the chest doing [^CDmg] damage. --?? $Atk.base == 20 ?? alterbar2|_target|@{target|token_id} _bar|3 _amount|-[^CDmg] _show|none --?? @{target|HP} == 0 ?? !Dead:|@{character_name}'s arrow hits @{target|character_name}'s corpse, confusing those around him. }}
.get() is only ever called on Target. If the id passed to target|[TOKEN_ID] is not a graphic (a drawing, for example), it will be undefined on line 82. if you add this on line 94 (right after the _.each()):TypeError: Cannot read property 'get' of undefined TypeError: Cannot read property 'get' of undefined at Object.AlterScript.Process (apiscript.js:9766:36) at apiscript.js:9674:15 at eval (eval at (/home/node/d20-api-server/api.js:146:1), :65:16) at Object.publish (eval at (/home/node/d20-api-server/api.js:146:1), :70:8) at /home/node/d20-api-server/api.js:1510:12 at /home/node/d20-api-server/node_modules/firebase/lib/firebase-node.js:93:560 at hc (/home/node/d20-api-server/node_modules/firebase/lib/firebase-node.js:39:147) at Kd (/home/node/d20-api-server/node_modules/firebase/lib/firebase-node.js:93:546) at Id.Mb (/home/node/d20-api-server/node_modules/firebase/lib/firebase-node.js:93:489) at Zd.Ld.Mb (/home/node/d20-api-server/node_modules/firebase/lib/firebase-node.js:94:425)
if(!Target) { sendChat("ERROR", `/w "${who}" Not a valid target id.`); return; }It should prevent the crash and provide feedback to the caller.
Sky said:
You can't use the built in tracker method with powercards. Instead use [[ [TRKR] 1d10 + stuff ]]
Sylverlokk said:
What am I doing wrong with this:
!token-mod --set statusmarkers|!bleeding-eye:?{Turns|1}
it's just supposed to ask for how many turns and set that status on with that number regardless of whether it was on before or not. Is that not possible? Or am I just doing it wrong?