This may be a really stupid thing, I've tried to find people with similar problems, but I seem unable to do so. I'm currently trying to set up a macro for one of my players. Effectively just to query if they're attacking with the DND 5e ability 'Great Weapon Master'. Doing so modifies the Attack and the Damage of an attack. What I wanted to do was just create a template for both versions of the attack, with and without GWM. However I keep getting an error like so: The Full text of this error is: "No,&{template:atkdmg" and there is no curly bracket on the end of that either, incase that's a clue. But as you can see, it doesn't give me options to click on, despite this working perfectly well if I just replace the macro calls with dicerolls. My Macros go as such: The main macro that I'm calling here: Greatsword-Attack: ?{Great Weapon Master?|No,#attack_norm |Yes,#attack_gwm } #attack_norm: &{template:atkdmg} {{mod=+[[@{Sigismund Sunwalker|pb}+@{Sigismund Sunwalker|Strength_mod}]]}} {{rname=Greatsword}} {{r1=[[1d20cs>20 + @{Sigismund Sunwalker|Strength_mod}[STR] + @{Sigismund Sunwalker|pb}[PROF]]]}} {{always=1}}{{r2=[[1d20cs>20 + @{Sigismund Sunwalker|Strength_mod}[STR] + @{Sigismund Sunwalker|pb}[PROF]]]}} {{attack=1}} {{damage=1}} {{dmg1flag=1}} {{dmg1=[[2d6ro<2 + @{Sigismund Sunwalker|Strength_mod}[STR]]]}} {{dmg1type=Slashing}}{{crit1=[[2d6ro<2]]}} {{charname=Sigismund Sunwalker}} Normally, if I run the macro without calling it in the main Macro, it looks perfectly fine. #attack_gwm: &{template:atkdmg} {{mod=+[[@{Sigismund Sunwalker|pb}+@{Sigismund Sunwalker|Strength_mod}-5]]}} {{rname=Greatsword, Great Weapon Master}} {{r1=[[1d20cs>20 + @{Sigismund Sunwalker|Strength_mod}[STR] + @{Sigismund Sunwalker|pb}[PROF] - 5[GWM]]]}} {{always=1}}{{r2=[[1d20cs>20 + @{Sigismund Sunwalker|Strength_mod}[STR] + @{Sigismund Sunwalker|pb}[PROF] - 5[GWM]]]}} {{attack=1}} {{damage=1}} {{dmg1flag=1}} {{dmg1=[[2d6ro<2 + @{Sigismund Sunwalker|Strength_mod}[STR] + 10[GWM]]]}} {{dmg1type=Slashing}}{{crit1=[[2d6ro<2]]}} {{charname=Sigismund Sunwalker}} This also runs completely fine if i just run it without calling it. Is there something super obvious I'm missing here? Some form of syntax I need to place in the macros im calling so it doesn't result in this error? Thanks for anyone who helps!!