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

Looking for a very specific macro

I'm going to be running Cold Steel Wardens and the way the rolls work is you build a dice pool using d10s and roll over 5 or higher to get a "Hit". It also has auto "Hits". My ideal macro would let the player build their dice pool, roll 5 or higher for successes and also include auto successes as per the system. I have the first part working fine - it's probably messy but gets the job: /r ?{Number of Dice?|0}d10>5f1 But for the life of me I cannot figure out how to add an option in to include auto successes and have it print accordingly
You can add to successes directly. So you could use /r ?{Number of Dice?|0}d10>5f1 + ?{Auto Successes|0} Auto Success(es)
Thank you, I knew I was missing something. That works perfectly.
How would one add critical failures and successes in this case? Sorry, still new to writing macros. The system subjects from successes if a 1 is rolled by -1 and a critical success of 10 adds 2 successes.
Critical failures are already handled by the 'f1'. Critical successes to add 2 successes aren't supported. If the numbers for successes are always the same you could use  Rollable Tables  to create a custom die that returns -1,0,1,2 with appropriate frequencies. It's a bit opaque but it gets the job done
Ahh gotcha, okay. Thank you.