I need help creating a macro that lets a player choose from multiple macros. This is to help reduce the amount of "screen space" taken up by macros, or remembering all the names of different macros The macros I am trying to combine are all of the options available to a DnD 5e Paladin for their "Lay on Hands" class feature: &{template:default} {{name=Lay On Hands}} {{@{target|character_name} recovers=[[?{How Many Hit Points?|1}]] Hit Points}} Displays as "[Character name] recovers [input] Hit Points" &{template:default} {{name=Lay on Hands}} {{Paladin spends =[[5*?{How many poisons?|1}]] Points to end [[?{Confirm number of poisons?|1}]] poisons on @{target|character_name}}} Displays as "Paladin spends [5*input_1] points to end [input_2] poisons on [character name]" &{template:default} {{name=Lay on Hands}} {{Paladin spends =[[5*?{How many diseases?|1}]] Points to end [[?{Confirm number of poisons?|1}]] diseases on @{target|character_name}}} Displays as "Paladin spends [5*input_1] points to end [input_2] diseases on [character name]" What I am trying to accomplish is a master macro that prompts the user to choose an option, and then the master macro executes the chosen macro without executing the other ones. I'm also unsure how to recall a previous input without recalling the output (i.e. if input_1 rolls 5*3, I want to recall the "3" without recalling the 5*), guidance on how to accomplish this would be greatly appreciated.