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

Macro question, word change?

I have this macro for a Ranged Attack in Iron Kingdoms: DEF: [[ ?{Boosted Attack?|N,2d6|Y,3d6} + ?{RAT|0} ]], ARM: [[ 2d6 + ?{POW|0} ]], LOC: [[ d6 ]] If it is a boosted attack it rolls 3d6+RAT to hit (2d6 otherwise), then 2d6+POW for damage, then d6 for location (body target). It works 100%, but I'd like it to tell the players it was a boosted attack.  Is this possible?
1561480907
Ziechael
Forum Champion
Sheet Author
API Scripter
You can add tags to your rolls which will display in the 'on hover' tooltip: DEF: [[ ?{Boosted Attack?|N,2d6|Y,3d6 [Boosted] } + ?{RAT|0} ]], ARM: [[ 2d6 + ?{POW|0} ]], LOC: [[ d6 ]] Alternatively you can make the front end a variable: ?{Boosted Attack?|N,DEF: [[ 2d6|Y,DEF (BOOSTED): [[ 3d6} + ?{RAT|0} ]], ARM: [[ 2d6 + ?{POW|0} ]], LOC: [[ d6 ]]