Sorry I didn't see the questions until recently, but yeah, I don't mind at all. A lot of it was just figuring out where to put things and when to replace which characters... In my list of Macros in the Settings tab, I have one called "Melee-Attack", which is set to Show as Token Action. This is what the coding in the macro looks like. ?{Attacks|@{selected|MeleeAttack1},%{selected|MeleeAttack1}|@{selected|MeleeAttack2},%{selected|MeleeAttack2}|@{selected|MeleeAttack3},%{selected|MeleeAttack3}|@{selected|MeleeAttack4},%{selected|MeleeAttack4}|@{selected|MeleeAttack5},%{selected|MeleeAttack5}} Then, each NPC or Monster I create has both an Attribute and an Ability called "MeleeAttack1" as well as "MeleeAttack2" and so on. For a town guard type NPC, the current value of the Attribute "MeleeAttack1" would be "Cudgel Standard". Then the Ability "MeleeAttack1" would be the town guard attacking with his cudgel as a standard action (using the Pathfinder rule set)...So might look something like... /emas Town Guard bashes ?{Target|you} with his cudgel. Hitting AC [[1d20+14+?{To Hit|0}]], doing [[1d6+13+?{To Damage|0}]] damage. This will give you three prompts when you activate the Ability...it'll ask you to put down who the guard is attacking, with the default saying "you", it'll ask you for a modifier on the To Hit roll defaulting to 0, and for a modifier on the To Damage roll again defaulting to 0. The above Ability will work fine as an independent Ability, but if you leave it as is and then try to use the Macro, your drop down menu gets all garbled. In order for things to work smoothly, you have to change it to the following. /emas Town Guard bashes ?{Target|you} with his cudgel. Hitting AC [[1d20+14+?{To Hit|0}]] doing [[1d6+13+?{To Damage|0} damage. So all we did was change "|" to "|" and "}" to "}" Then, if the Town Guard doesn't have four more distinct melee attacks, set the current value of the unused Attributes to NA. For the unused Abilities just don't put anything where you would normally put the coding. Did that help at all?