It might be my ignorance of R20 or the tendency of my brain to default to javascript syntax but I'm having some difficulty creating a macro to call other macros with templates. The Goal I want to give my players a drop down menu that serves up fun, flavored fumble text when they crit fail. The Setup I created three Roll Tables representative of three attack types: Spells, Melee and Ranged. Additionally, I've created 3 macros that call said tables individually. For example: &{template:npcaction} {{rname= Critical Failure! }} {{name= You done effed up }} {{description= [[1t[CritFumble_Spell]]]}} That works great. I get the flavor text in the chat window formatted all pretty like in the npcaction template. The Problem I start running into issues when I try create the drop down that calls those macros. I started simply with: &{template:npcaction}{{desc= ?{Choose an Attack Type|Spell,#rollFumbleSpell|Melee,#rollFumbleMelee|Ranged,#rollFumbleRanged}} } Drop down looks good. I get the three choices, but submitting any of them only display the little red line associated with the template and nothing else. I've tried a bunch of combos, changing syntax like adding spaces before hashtags or braces and what have you, but either it remains the same or gets worse by breaking the dropdown. For example, if I add spaces before the # and after the macro name (before the |) the drop down breaks and no longer displays the choices, but submitting gives me the flavored styled text. I tried doing the long form and escaping characters where necessary, but that just seemed to make things worse and more complicated. So, before I go look up how to do the whisper route, I thought I'd ask the code gurus here. 'preciate any help.