I am having trouble doing some coding with macros. Basically, what i want to do, is use the Traits Template to show on chat a description of any special attack from a dropdown choice, how to do it and etc. Lets say, for example that i have these 2 special attacks, Grapple and Feint: Feint: As a standard action, you can try to mislead an opponent in melee combat so that he can’t dodge your next attack effectively. Grapple: Grappling means wrestling and struggling hand-to-hand. I can make the Title (and the attack chosen) to be chosen from a dropdown, and i could just repeat the query for the description, but i fear mismatching and it just feels inefficient to have to query twice for the same thing. It just feels wrong. I know i can reference the choice made, but how i make that choice actually change something on the second instance? Brute code: &{template:traits} {{name=?{Choose a Special Attack|Grapple, Grapple|Feint,Feint}}} {{source=Special Attacks}} {{description=?{Choose a Special attack|Grapple, Grappling means wrestling and struggling hand-to-hand.|Feint, As a standard action you can try to mislead an opponent in melee combat so that he can’t dodge your next attack effectively.}}} Code as of now: &{template:traits} {{name=?{Choose a Special Attack|Grapple, Grapple|Feint,Feint}}} {{source=Special Attacks}} {{description=?{Choose a Special Attack}}}