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

Success and Failure Macros Stopped Working

I have my own system so I have a few macros to save some time. Today a simple part of some stopped working, examples: ... [[[[2d8]]>9]] ... /r [[4d6]]>12 Normally, it would do the roll and then check for success, but it's doing the roll and ignoring the check part. So did the roll20 updated and poor people can't do that anymore, or just change to another way?
1720305998

Edited 1720306256
Gauss
Forum Champion
Hi Arkadiel,  The way you have it set up won't work.  What you are asking for is:  [[2d8]]>9 resolves to (assuming the dice roll is a 10) 10>9 This will not work as there is no roll.  The following will work:  /r 2d8>9 (evaluates each individual die) /r {[[2d8]],0}>9 (evaluates 2d8 summed together, and 0) /r {[[2d8]]+1d0}>9 (evaluates 2d8 as a static number + dice roll) Here is the wiki on it.
Hello, thank you very much.