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

Counting successes over a number on one die

Hope this is correct place (and did a search, but it didn't work)... I want to roll 1d20, check to see if result is => 13.  If yes, how many times is it greater? If I roll a 15 the answer is 2.  Roll a 2, the answer is No.  Roll an 18, the answer is 5. Is there a way I can do this? Thank you :)
1504112310

Edited 1504112671
The Aaron
Pro
API Scripter
Something like: [[ {0d0,1d20-13}kh1 ]] Sample output from rolling it a bunch of times:
1504112410

Edited 1504112422
Silvyre
Forum Champion
I'd personally use [[ 1d20cf<12 - 13 ]]
Thank you!!