I've been playing around with making a weapon attack powercard thats has a damage reroll for the "Great weapon fighting" fighting style for Paladins.  I have successfully gotten it to work but the reroll is automatic. I'm wondering if there is a way to create a prompt for the player to be able to choose whether or not they want to reroll the damage. Any help again would be greatly appreciated. Here is what I have so far: !power {{ --name|Whip --tokenid|@{selected|token_id} --target_list|@{target|token_id} --emote|@{selected|token_name} Attacks! --audioattr 1*|@{selected|token_id} AudioOnAttack --audioattr 2*|@{target|token_id} AudioOnHurt --leftsub|Melee --rightsub|Normal --Attack:[[ [$Atk] 1d20 +@{selected|strength_mod} [STR] + @{selected|pb} [PROF] ]] vs AC [[@{target|AC}]]| --?? $Atk.base <> 1 AND $Atk.base <> 20 AND $Atk >= @{target|AC} ??Hit:[[ [$Dmg] 1d4+ @{selected|strength_mod}+ @{selected|global_damage_mod_roll} [STR]]] Slashing damage!|  --?? $Atk.base <> 1 AND $Atk.base <> 20 AND $Atk >= @{target|AC} AND $Dmg.base < 3 ??Great Weapon Fighting Reroll: [[1d4+ @{selected|strength_mod} [STR]]] + @{selected|global_damage_mod_roll}  Slashing damage!|  --?? $Atk.base <> 1 AND $Atk.base == 20 AND $Atk >= @{target|AC} AND $Dmg.base < 3           ??Great Weapon Fighting Reroll:[[3d4+ @{selected|strength_mod} [STR]]] + @{selected|global_damage_mod_roll} Slashing damage!|  --?? $Atk.base == 20 ??Crit!:[[3d4+ @{selected|strength_mod} [STR] + @{selected|global_damage_mod_roll} ]] Slashing damage!| --?? $Atk < @{target|AC} AND $Atk.base <> 1 ??@{selected|character_name} missed!| --?? $Atk.base == 1 ??Fumble|@{selected|character_name} fumbles the attack! }}