Starr Saphyre said: UPDATE: Okay, so apparently Roll Templates can't be used for /roll. Is there any way for me to display this, and get an output that shows the chosen Attribute, the chosen Skill, the entered Modifier, and the final value? You'll have to use an inline roll instead of /roll, the rest is quite simple: &{template:default} {{name= Roll}} {{?{Attribute Selection| Robustness, [[@{Selected|Robustness}[Robustness]]]| Agility, [[@{Selected|Agility}[Agility]]]| Intelligence, [[@{Selected|Intelligence}[Intelligence]]]| Sensibility, [[@{Selected|Sensibility}[Sensibility]]]| Charm, [[@{Selected|Charm}[Charm]]] } ?{Skill Selection| Academics, + [[@{Selected|Academics}[Academics]]]| Acrobatics, + [[@{Selected|Acrobatics}[Acrobatics]]] } + [[?{Modifier|0}[Modifier]]]=Result: [[?{Number of Dice|3}d6k3 + ?{Attribute Selection} + ?{Skill Selection} + ?{Modifier}]] }} The same set of queries is used to call and display the same values separately from the roll where it's all added up. If you want the attributes and skills represented in text, you can bake those into the attributes themselves, by making them in the format of [[X[attribute name]]] - that way, when the number is hovered over, you can see what the modifier is from. Note, I didn't test this because I don't have your attributes set up, but as far as I'm aware, it should work. EDIT: I figured out a better way to do the labels, that doesn't require you to alter the attributes, and simplified the macro a little bit. If you have queries with the same name multiple times, the latter copies take the answer of the earlier ones, so they don't need to be fully written out. EDIT2: Cleaned and tested.