So I've been trying to nest a macro within a query for about 2 hours now. Obviously it expands the macro within the query when it tries to parse it, so I've replaced all the syntax with HTML entities and I've turned the macro into a character ability and I'm instead trying to call the ability in the query. The problem I'm currently having is, when I try to call the ability in the query, literally nothing happens. No error, no output. When I manually use the ability, it outputs the raw text of the macro (converting HTML entities to their correct form), without actually parsing it properly, but if I ctrl+c then ctrl+v that raw text into the chat, it will roll the macro correctly, so the code is clearly working fine. I'm just at such a loss right now. Any help would be so greatly appreciated. For reference, heres the macro (ability) I'm trying to call in the query (with and without HTML entities) With HTML entities & #38;& #123;template:atkdmg& #125; & #123;& #123;mod=& #91;& #91;3+& #64;& #123;Do'dreg 'The Admiral'& #124;strength_mod& #125;+& #64;& #123;Do'dreg 'The Admiral'& #124;pb& #125;& #93;& #93;& #125;& #125; & #123;& #123;rname=Legendary Greatsword 0& #125;& #125; & #123;& #123;r1=& #91;& #91;1d20+& #64;& #123;Do'dreg 'The Admiral'& #124;strength_mod& #125;+& #64;& #123;Do'dreg 'The Admiral'& #124;pb& #125;& #93;& #93;& #125;& #125; & #123;& #123;always=1& #125;& #125; & #123;& #123;r2=& #91;& #91;1d20+& #64;& #123;Do'dreg 'The Admiral'& #124;strength_mod& #125;+& #64;& #123;Do'dreg 'The Admiral'& #124;pb& #125;& #93;& #93;& #125;& #125; & #123;& #123;attack=1& #125;& #125; & #123;& #123;damage=1& #125;& #125; & #123;& #123;dmg1flag=1& #125;& #125; & #123;& #123;dmg1=& #91;& #91;2d6+3+& #64;& #123;Do'dreg 'The Admiral'& #124;strength_mod& #125;& #93;& #93;& #125;& #125; & #123;& #123;dmg1type=Slashing& #125;& #125; & #123;& #123;crit1=& #91;& #91;2d6& #93;& #93;& #125;& #125; & #123;& #123;globalattack=& #64;& #123;Do'dreg 'The Admiral'& #124;global_attack_mod& #125;& #125;& #125; & #123;& #123;globaldamage=& #91;& #91;& #64;& #123;Do'dreg 'The Admiral'& #124;global_damage_mod_roll& #125;& #93;& #93;& #125;& #125; & #123;& #123;globaldamagetype=& #64;& #123;Do'dreg 'The Admiral'& #124;global_damage_mod_type& #125;& #125;& #125; Without HTML entities &{template:atkdmg} {{mod=[[3+@{Do'dreg 'The
Admiral'|strength_mod}+@{Do'dreg 'The Admiral'|pb}]]}} {{rname=Legendary
Greatsword 0}} {{r1=[[1d20+@{Do'dreg 'The
Admiral'|strength_mod}+@{Do'dreg 'The Admiral'|pb}]]}} {{always=1}}
{{r2=[[1d20+@{Do'dreg 'The Admiral'|strength_mod}+@{Do'dreg 'The
Admiral'|pb}]]}} {{attack=1}} {{damage=1}} {{dmg1flag=1}}
{{dmg1=[[2d6+3+@{Do'dreg 'The Admiral'|strength_mod}]]}}
{{dmg1type=Slashing}} {{crit1=[[2d6]]}} {{globalattack=@{Do'dreg 'The
Admiral'|global_attack_mod}}} {{globaldamage=[[@{Do'dreg 'The
Admiral'|global_damage_mod_roll}]]}} {{globaldamagetype=@{Do'dreg 'The
Admiral'|global_damage_mod_type}}} Then this is the code for the query macro ?{Number of Charges? | 0,%{Do'dreg 'The Admiral'|Legendary-Greatsword-0} | 1,1| 2,2| 3,3} TL;DR HTML entity macro outputs raw text into chat instead of parsing it as if it were a macro, halp