A friend is hosting a game of Persona: Tabletop RPG by James Austin and Seamus Harvey, and I'm trying to automate some of the functions with macros since there's no sheet for it and neither of us can code one. I'm trying to make a macro that asks the user what Social Attribute they want to roll that then rolls the attribute and prints that it was rolled, something like this: /me rolls [number] for Athleticism or /me rolls for Athleticism, scoring [number] The draft code I have is /me rolls for ?{Select an Attribute|Athleticism|Charm|Guts|Knowledge|Proficiency}, scoring [[2d6+?{Select an Attribute|Athleticism|Charm|Guts|Knowledge|Proficiency}]] This isn't accomplishing what I want, it inputs e.g. Athleticism into the macro and prints "/me rolls for Athleticism, scoring [[2d6+Athleticism]]" instead of something like [[2d6+2]] How do I get the macro to input Athleticism as the word and also Athleticism the attribute with a single query to save clicks? It seems especially cumbersome to have to make a macro for each attribute separately.