The long and short of my situation is that I got ahold of this PDF for an out of print game called Dark Earth. So my online buddies and I want to try it out. Obviously there's no sheet for it so im making some macros to compensate. Game uses a d6 dice pool system. 1-3 is a fail while 4-6 is a success with 6s counting as two successes. Heres the macro I made for that; &{template:default} {{name=**Dice Pool:** ?{Dice Pool}d6}} {{Amount of Successes:=[[?{Dice Pool|1}d6>6f<3 + ?{Dice Pool|1} ]] }} Combat, however, works slightly different. It still uses d6 pools for tests but what makes it different is that you divvy up dice from your total "combat potential" dice pool (skill level in a weapon + overall combat ability), into smaller "attack potential" and "defence potential" dice pools at the start of a round. There are other actions you can take but for simplicity sake ill be focusing on attack and defence. Anyway, I want to make a macro that allows you to choose between making an attack, defence, or attack & defence at the same time, etc. However, every attempt ive made hasnt worked. Macros for the individual actions work but I would prefer a single, multiple choice macro. Here are the macros for the each action; Attack: &{template:default} {{name=**@{selected|character_name}**}} {{Attack:=[[?{Attack Potential|0}d6>6f<3 + ?{Attack Potential|0} ]]}} Defence: &{template:default} {{name=**@{selected|character_name}**}} {{Defence:=[[?{Defence Potential|0}d6>6f<3 + ?{Defence Potential|0} ]]}} Both: &{template:default} {{name=**@{selected|character_name}**}} {{Attack:=[[?{Attack Potential|0}d6>6f<3 + ?{Attack Potential|0} ]]}} {{Defence:=[[?{Defence Potential|0}d6>6f<3 + ?{Defence Potential|0} ]]}} Ive tried this macro: ?{Which Action? |Attack, #Attack |Defence, #Defence|Both, #Both|} but i keep getting errors. Same goes if I just but the entire attack, defence, and Both macro into the multiple choice macro instead of using the #. So what exactly am I missing? Is what I want to do even possible?