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 .
×

Specific commands

Hello !  I'm upgrading my macro and I don't know how to do this :  I roll a dice and I want to roll another one only if the first one is a success. I know that the first one is /roll 1d100>52. Thanks for helping me ! ^^
1607653215
The Aaron
Roll20 Production Team
API Scripter
Probably the closest you can do without the API is something like: [[ [[1d100>52]] * 3d8 ]] Basically, you'll get a 0 if the 1d100 was less than 52, and the result of 3d8 if you roll 52 or greater.  You will still get the dice rolled either way.
Hello ! Thanks for the answer ! I tried but i think i did it the wrong way because it didn't work. It's like i threw 3d8 and zero d100...