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 calculations seem out of whack

I purchased a pathfinder module from the market and was playing around with the pregen pcs. They don't use the character sheet so much as just the abilities section to make their macros. They have an ability for each saving throw. When I click the FORT save button I get numbers from all over the place. 168, 32, 114, etc etc. Below is the macro that is called when you hit that button. @{selected|token_name} makes a Fortitude Save![[1d20@{FORT}]] Where are those numbers coming from??? The FORT section of the character is listed as 0. So when I see that Macro it seems it should just roll a d20 with nothing added. I have noticed these really large numbers in several macros that don't seem to be right. Any ideas on how to research this??? And here is this initiative roll macro: @{selected|token_name} rolls initiative! [[1d20@{INIT}&{tracker}]] It generates numbers like 49, 138, 140 etc. (This characters INIT bonus is 0) 1
1480218574
Tetsuo
Forum Champion
Thats because its doing this: FORT = 5 [[1d20@{Fort}]] = 1d20+205 Try changing your fort stat to be +5 instead of 5. same thing with the initiative macro
My recommendation is not to alter the values of the Attributes, but add a plus sign between the dice and the Attributes. @{selected|token_name} makes a Fortitude Save! [[ 1d20 + @{FORT} ]] @{selected|token_name} rolls initiative! [[ 1d20 + @{INIT} &{tracker} ]]