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

How do i make a macro with multiple results?

So i want to make a macro that shows three different results, meaning: the roll is d10+6 and then I want that result to be multiplied with 0.75, 1 and 1,25. How do I do that? I know that two different results are possible, are three as well? I mean, sure, I could just make one macro for each, but I would prefer if my players didn't know which one of them is the one that aplies
1614880571
Scott C.
Forum Champion
Sheet Author
API Scripter
Compendium Curator
You can use the reusing rolls trick to do this with some fanciness: &{template:default} [[ [[ [[1d10+6]]*1.25]]/1.666]] {{x1=$[[0]]}} {{x1.25=$[[1]]}} {{x0.75=$[[2]]}} Doing rounding is going to make things a little less precise, so if you need that you're going to have to accept some inaccuracies.
Nice, thx