Hi, I'm trying to see if I can work some magic with these powercards for a player that has Sharpshooter (-5 to attack roll, +10 to Damage) As a proof of concept, to get it to work, I tried this: !power {{ --name|@{selected|character_name} - Hand Crossbow Attack --leftsub|Main Hand --hroll|[[ [$Sharp] ?{Sharpshooter?|No, 0|Yes, 1}]] --Attack Roll:|[[ [$Atk] 2d20kh1 + @{selected|dexterity_mod} [DEX] + @{selected|pb} [PROF] + 2 ]] vs @{target|character_name}'s @{target|AC} AC --?? $Atk.total < @{target|AC} ?? Damage:|Missed! --?? $Atk.total >= @{target|AC} AND $Atk.base <> 20 ?? Damage:|[[ [$Dmg] 1d6 + @{selected|dexterity_mod} [DEX] + 2 ]] Piercing --?? $Atk.base == 20 ?? Crit!:|[[ [$Crit] 2d6 + @{selected|dexterity_mod} [DEX] + 2 ]] Piercing --?? $Sharp.total == 1 ?? Sharpshooter|Yes }} And this was just meant to add a little text at the bottom of the attack if I chose "Yes" on the dropdown prompt. This didn't work, however, as the macro just seemed to hang as it waited for something. Does anyone know a good way to handle this little toggle ability?