Hi all, I'm working on some macros for a homebrew system that combines elements from some different games. Each character has three saving throws, fortitude, reflex, will, like in D&D 3rd edition, but I'm using a different die rolling mechanic. I have the following macro for rolling a Fortitude save: /roll 1d@{mod-Strength}!! + 1d@{mod-Willpower}!! In this scenario strength has a value of 4 and willpower has a value of 8. It rolls a d4 and a d8 and adds them together (after exploding, if necessary), which is what I want to happen so that is working fine (I'm mixing D&D 3rd and Savage World concepts here if anyone is wondering) I was going to create one for Reflex and Will as well but then I wondered if I could create a single macro (SavingThrow) so players can always click that and select fortitude, reflex, or will. However, I'm not sure if you can pull more than one variable from a selection (and having them pull twice or write a new variable would defeat the purpose of simplicity). I suspect it would look something like /roll ?{Ability Selection| Fortitude,@{Selected|??}| Reflex,@{Selected|??}| Will,@{Selected|??}}
Where the ?? are where I suspect something would go, but don't know what/if at all possible. Thank you for your help.