This is for a D&D 3.5 game. I want to have one saving throw macro button for Fortitude, Reflex and Will saves. When players click on the 'Saves' button I want them to get this drop-down list: <a href="https://screenshot.googleplex.com/9Zw5xLs6D7LiqEm" rel="nofollow">https://screenshot.googleplex.com/9Zw5xLs6D7LiqEm</a> (The option list at the bottom of the SS is what you see when opening the drop-down). A player that clicks on 'Fortitude' should see: <a href="https://screenshot.googleplex.com/ALPtQW3JQNAWYDP" rel="nofollow">https://screenshot.googleplex.com/ALPtQW3JQNAWYDP</a> A player that clicks on 'Reflex' should see: <a href="https://screenshot.googleplex.com/9YGfKnX7FfTDbAM" rel="nofollow">https://screenshot.googleplex.com/9YGfKnX7FfTDbAM</a> A player that clicks on 'Will' should see: <a href="https://screenshot.googleplex.com/wA8gBEdMK2hUebY" rel="nofollow">https://screenshot.googleplex.com/wA8gBEdMK2hUebY</a> This is the ability I created for it: ?{Choose a Saving Throws|Fortitude, @{selected|fortitudemacro} |Reflex, @{selected|reflexmacro}|Will, @{selected|willmacro}} I have added the 3 attributes for the character: <a href="https://screenshot.googleplex.com/BDZNaEFyr3iRLst" rel="nofollow">https://screenshot.googleplex.com/BDZNaEFyr3iRLst</a> The values are the generated macros for each role. fortitudemacro: &{template:DnD35StdRoll} {{saveflag=true}} {{name=@{character_name} }} {{subtags=braces against the attack}} {{check=Fortitude check:}} {{checkroll= [[ 1d20 + [[ @{fortitude} ]] ]] }} {{notes=@{fortitudenote} }} reflexmacro: &{template:DnD35StdRoll} {{saveflag=true}} {{name=@{character_name} }} {{subtags=tries to dodge}} {{check=Reflex check:}} {{checkroll= [[ 1d20 + [[ @{reflex} ]] ]] }} {{notes=@{reflexnote} }} willmacro: &{template:DnD35StdRoll} {{saveflag=true}} {{name=@{character_name} }} {{subtags=tries to resist}} {{check=Will check:}} {{checkroll= [[ 1d20 + [[ @{will} ]] ]] }} {{notes=@{willnote} }} This doesn't work... This is what I get when I run the macro: <a href="https://screenshot.googleplex.com/9VBzwH93adHoppv" rel="nofollow">https://screenshot.googleplex.com/9VBzwH93adHoppv</a> Looking at the different parts of the Saving throw macros, I see three different parts: subtags check checkroll Since these have different values for each type of saving throws, I understand that they need to be inside the drop-down code so that the user's choice would decide the value for them. Is what I want to do possible? Thanks.