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

Help rolling Fickle Weapon

Howdy, I'm having a rather difficult time in one of my games to figure out how to roll Fickle Weapon. In Pathfinder, this means I anytime I roll a 1, 2, or 3, it instantly becomes the highest number I can roll on that dice. When I'm rolling a few dozen dice a turn, its rather hard to figure out how much I should actually be doing. IS there any macros or commands that I can use to solve this?
1589159119
GiGs
Pro
Sheet Author
API Scripter
So, if you're rolling a d6, with 1, 2, 3 becoming 6, that gives roll results of: 6, 6, 6, 4, 5, 6 This is exactly the same as a die that rolls  4, 5, 6, 6, 6, 6 So you can represent this as 1d6+3, max 6. You'd show that in a roll20 macro like {1d6+3,6+0}kl1 But that really only works for 1 die at a time.  If you want to roll multiple dice, the best way is to create a rollable table for each die type. A rollable table for d6 fickle die would have Item:      4    5    6     Weight:    1    1    4 Call each rollable table fickle-d6, fickle -d8, etc, and then you can call them with /roll 6t[fickle-d6] The 6t indicates "rolling 6 times on the table" you can incorporate these in other roll macros easily: /roll 1d10 +6t[fickle-d6] +3