I'm having a lot of issues with the roll20 2024 D&D sheet, so I've decided to jump into macros to give myself back some of the functionality lost from the transition from the 2014 sheet. Currently, I'm trying to effectively replace 'Effects' with a query menu that opens up every time I make an attack roll, asking if I want to add various effects - in this case they are Psionic Strike (1d6) and Fire's Burn (1d10). I've scoured these forums and come up with a working macro for my Greatsword attack damage which I'm very happy with. However, I'm trying to go a level higher and create a macro which allows me to query weapon type first, so if I switch between my weapons to make good use of my Weapon Masteries I only need 1 macro. All would be good in the world if I didn't have Great Weapon Fighting. My macros: GreatswordDamage (WORKING): [[{1d6, 0d1+3}kh1 +{1d6, 0d1+3}kh1+@{Zakan 'Nameless' Ulanathi|strength_mod}+?{Psionic Strike|No,[[0]]|Yes,[[1d6]]}+?{Fire's Burn|No,[[0]]]]|Yes,[[1d10]]]]} WeaponDamage (NOT WORKING): ?{Weapon|Greatsword,[[{1d6,0d1+3}kh1 +{1d6, 0d1+3}kh1]]|Greataxe,[[{1d12,0d1+3}kh1]]+@{Zakan 'Nameless' Ulanathi|strength_mod}+?{Psionic Strike|No,[[0]]|Yes,[[1d6]]}+?{Fire's Burn|No,[[0]]]]|Yes,[[1d10]]]]} Now there may be some other problems going on, but I *believe* the main problem to be the [[{1d6,0d1+3}kh1 +{1d6, 0d1+3}kh1]] within the query, since the } breaks it all. Is there a way for me to have the functionality of this part of the macro without it destroying the query? Or should I attempt to come at this from a completely different perspective? I attempted to have nested macros so that it would instead just call on a macro only containing [[{1d6,0d1+3}kh1 +{1d6, 0d1+3}kh1], but it seems that, at least for me, calling on macros doesn't work on 2024 sheets.