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

D100 Success Less than or greater than help.

Might be a dumb question but i can't figure it out. I want to make a macro that combines two attributes to a value that when rolling a d100 to count it as a success that has to be lower or higher then that value. I am playing a 40k campaign and would like to make it easier to figure out checks. To give you an example of what i'm trying to do is something like this. /roll 1d100<@{token|atr}+10 this doesn't work and just give me +10 success on the roll and not adding it to the attribute.
You need to group everything after the < sign. /roll 1d100<(@{token|atr}+10)
1393207307
Gauss
Forum Champion
There are two ways to make this work. 1) Move the extra terms to the other side of the inequality and then group them. Example: {1d100-10}<@{token|atr} 2) Put the right side of the inequality in an inline roll. Example: /r 1d100<[[@{token|atr}+10]]
Ah Thank You the inline roll is a perfect solution to what I want to do.