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

Does anyone have a macro for modifying individual d20 rolls?

What I mean is a macro where it rolls x amount of d20s, and displays the total of each d20 roll plus a specified modifier.  Rather than having  (20, 15, 13) + 3 Total: 51 It would be a system that goes like  (23, 18, 16) I'm not sure if this is capable in the non API version of Roll20
1593489860
GiGs
Pro
Sheet Author
API Scripter
If you're rolling against a target number and counting successes this is possible: /roll {3d20+5}>15 But if you're not rolling against a target number, you have to do it the brute force way: /roll 3d20+5*3
1593495439

Edited 1593495746
Oosh
Sheet Author
API Scripter
What's the maximum number of dice you're likely to roll? If it's the individual rolls you're after, rather than the total, you can do this with a Query: ?{How many dice?|2,[[1d20+?{Modifier|5}]] [[1d20+?{Modifier}]]| 3,[[1d20+?{Modifier|5}]] [[1d20+?{Modifier}]] [[1d20+?{Modifier}]]| 4,[[1d20+?{Modifier|5}]] [[1d20+?{Modifier}]] [[1d20+?{Modifier}]] [[1d20+?{Modifier}]]| 5,[[1d20+?{Modifier|5}]] [[1d20+?{Modifier}]] [[1d20+?{Modifier}]] [[1d20+?{Modifier}]] [[1d20+?{Modifier}]]| 6,[[1d20+?{Modifier|5}]] [[1d20+?{Modifier}]] [[1d20+?{Modifier}]] [[1d20+?{Modifier}]] [[1d20+?{Modifier}]] [[1d20+?{Modifier}]]} And extend it as far as you need. As long as you have a reasonable limit on how many you're rolling it's easy enough to extend. You can pretty it up with a template too, depending on what sheet you''re using. If you only need the total, the second one GiGs suggested is the easiest way.