Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

I need a little help with PowerCard, really close to solve my problem

!power {{   --name|Magic Missiles  --target_list|@{target|1st|token_id} | @{target|2nd|token_id} | @{target|3rd|token_id}   --Attack#?{Number of targets|3} Damage|[[ [$Dmg] 1d4+1 ]] Force Damage}  --alterbar1|_target|@{target|token_id} _bar|1 _amount|-[^Dmg] _show|all }} The last line wont show up in game. is there anyway i can fix that? My other Alterbar things show up, but i can't seem to get this one right. Thanks in advance :)
Hi Fredda,  The issue here is that you are calling a target for your Alterbar that isn't in your target list. Your 3 targets are @{target|1st|token_id}@{target|2nd|token_id} @{target|3rd|token_id} but you are telling Alterbars to change @{target|token_id} which is slightly different.  I believe you would have to have lines for each target.  !power {{   --name|Magic Missiles  --target_list|@{target|1st|token_id} | @{target|2nd|token_id} | @{target|3rd|token_id}   --Attack#?{Number of targets|3} Damage|[[ [$Dmg] 1d4+1 ]] Force Damage}  --alterbar1 *1|_target|@{target|1st|token_id} _bar|1 _amount|-[^Dmg] _show|all  --alterbar1 *2|_target|@{target|2nd|token_id} _bar|1 _amount|-[^Dmg] _show|all  --alterbar1 *3|_target|@{target|3rd|token_id} _bar|1 _amount|-[^Dmg] _show|all }}
Erik M. said: Hi Fredda,  The issue here is that you are calling a target for your Alterbar that isn't in your target list. Your 3 targets are @{target|1st|token_id}@{target|2nd|token_id} @{target|3rd|token_id} but you are telling Alterbars to change @{target|token_id} which is slightly different.  I believe you would have to have lines for each target.  !power {{   --name|Magic Missiles  --target_list|@{target|1st|token_id} | @{target|2nd|token_id} | @{target|3rd|token_id}   --Attack#?{Number of targets|3} Damage|[[ [$Dmg] 1d4+1 ]] Force Damage}  --alterbar1 *1|_target|@{target|1st|token_id} _bar|1 _amount|-[^Dmg] _show|all  --alterbar1 *2|_target|@{target|2nd|token_id} _bar|1 _amount|-[^Dmg] _show|all  --alterbar1 *3|_target|@{target|3rd|token_id} _bar|1 _amount|-[^Dmg] _show|all }} Thanks!