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

Macro help please?

1463448374

Edited 1463448401
Kaze
Pro
So i'm looking to have a macro that rolls a die with a set modifier. However, i'm wanting to have it where it displays a separate total that combines with the previous roll. EXample: rolling 1d20+1 untrained, adding +2 for proficiency (5e) 1d20+1 = 14 (wanting to get a second [[..]] command that just adds the 14 and 2 together to get 16) If anyone can help me, that'd be awesome.
You can't. Not without using an API script.
ok thanks :) :'(
1463492068
The Aaron
Pro
API Scripter
You can use a bit of math trickery to get a display where both numbers are visible: [[ ((1d20+1)*1.0001)+2 ]] would show up as: 16.0014 That might get you to where you need to be?
Cool Trick!