
Hi, I'm playing PF and am trying to capture all the conditions of an attack so I don't have to think as much on the fly which will speed up combat. Right now I'm attacking with a earth breaker (2d6 like greatsword) and am trying to capture several events: Rage (+2 str = +2 atk/dmg) Power Attack (-1 atk, +2 dmg) Charge (+2 atk) Right now I'd just be using different macros with possible combinations of each situation, but that's 7+ macros just for these conditions.. Here is the default macro: [[1d20+6]] vs AC || [[2d6+6]] B/S Dmg With Rage: [[1d20+6+2]] vs AC || [[2d6+6+2]] B/S Dmg With Power attack: [[1d20+6-1]] vs AC || [[2d6+6+2+3]] B/S Dmg I could do this with 5 queries per click, but that is a bad way to handle it (especially if adapted to nat attack it becomes 10 queries[rage is required]) This will just become crazy when I start to pounce with my natural attacks (macro below for that one guy who stumbles upon this and wants it): Claw1 [[1d20+6+2]] vs AC || [[d6+4+2]] B/S Dmg Claw2 [[1d20+6+2]] vs AC || [[d6+4+2]] B/S Dmg Bite [[1d20+6+2]] vs AC || [[d4+4+2]] B/P/S Dmg Any way to do this easily? I know JS if that helps at all.. I've seen several posts asking for a way to set a query to a variable to reuse, but that doesn't seem possible.