Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

Pathfinder Kineticist macro question (Empowered Blast)

1658931245

Edited 1658931513
So, the short of it is that my Empowered Blast is supposed to add up the dice roll and the modifiers and then multiply it by 1.5.  I've tried putting a macro together to do that, but it's currently only multiplying the final variable modifier. This is the relevant portion of the macro {{damage=[[7d6 + 4 + ?{Overflow?:|1,3|2,6|3,9|4,12|No,0} + ?{Burning?:|Yes,1d6|No,0} + ?{Undead?:|Yes,1|No,0} + ?{Overflow Con?:|2,1|4,2|6,3} + ?{Furious?:|Yes,10|No,0} * ?{Empowered?:|Yes,1.5|No,1|} ]]}} So as it stands the only part that is being multiplied is the 10 from Furious.  How would I fix this?
1658932168
David M.
Pro
API Scripter
Try adding parenthesis around everything but the multiplier [[(7d6 + 4 + ?{Overflow?:|1,3|2,6|3,9|4,12|No,0} + ?{Burning?:|Yes,1d6|No,0} + ?{Undead?:|Yes,1|No,0} + ?{Overflow Con?:|2,1|4,2|6,3} + ?{Furious?:|Yes,10|No,0}) * ?{Empowered?:|Yes,1.5|No,1|} ]]
...I could have sworn I tried that, I must have made a typo when adding the parenthesis or something because when I tried it the macro didn't fire.  It worked, thanks!