
I have a character ability token action calling a macro which works fine with a fixed number of dice: **@{selected|name} sprays @{target|name} with buckshot!** /roll ?{Target Number?| 4+, 3 t[AttackDice4+]| 5+, 3 t[AttackDice5+]} /fx bubbling-smoke @{target|token_id} ``STANDARD ATTACK - no special rules`` ...but it breaks when I try to incorporate the below bolded query: **@{selected|name} sprays @{target|name} with buckshot!** /roll ?{Target Number?| 4+, (?{Attack Dice}) t[AttackDice4+]| 5+, (?{Attack Dice}) t[AttackDice5+]} /fx bubbling-smoke @{target|token_id} ``STANDARD ATTACK - no special rules`` Is there something I'm missing? EDIT: To provide some additional context, here's the character ability that calls this macro: ?{Which attack?| Fire SMG,#AttackSMG | Fire Shotgun,#AttackShotgun | Fire Handgun(s),#AttackHandgun } "#AttackSMG" is the one that works, as that weapon has fixed damage dice. "#AttackShotgun" and "#AttackHandgun" can vary based on range and number of shooters, so they're giving me problems.