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 rolls not working

1436460951

Edited 1436461005
Perhaps I have the syntax wrong. I want to get a success roll in a macro, instead of merely the result of the roll. For example my macro: /r d20 < @{selected|dexterity} to save will produce the correct result, but will not exclaim N Successes! Does the right hand side require a constant only? For example, this will work: /r d20 < 15 to save Any help is appreciated. -Falsoon
No spaces. /roll 1d20<@{selected|dexterity}
1436566507

Edited 1436567469
A dex save isn't @{selected|dexterity}. Dexterity just gives you the raw dex stat. The save will be @{selected|dexterity_save_mod}+10 (or something similar, going of memory). That will also account for proficiency automatically.
1436590421

Edited 1436590487
Thank HoneyBadger. Thanks Henning. I was just using an example for the Success roles. Currently, my Save macro returns positive (yay!) or negative (boo!) result, but I thought the Success descriptor would be clearer. My Save macro is actually (or similar to, depending on the trait used) /r d20*(-1) + round(@{target|dexterity}/3) + @{target|ArmorBonus}