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

AC, Fort, Ref, Will? Generating values

Hello all, I've noticed the 4th ed character sheet auto calculates these saves, but is there any way to generate a macro that will pull up these values? I have a macro right now that whispers me, the GM, the save values so I can do quick reference checks, but it seems to be broken now. It just gives me a series of numbers, not the actual value. Am I missing something?
1403577491
Lithl
Pro
Sheet Author
API Scripter
You'll need to use eg [[@{ac}]] instead of just @{ac}
awesome, THA Brian said: You'll need to use eg [[@{ac}]] instead of just @{ac} Awesome, thank you! I don't suppose you know how to pull an ability mod do you? like, I can find out how to pull the actual ability, just not the modifier.
Hrm this will work in a pinch. it's [[floor((@{"charactername"|stat-10)/2)]]. Still I'd think the mod is being stored SOMEWHERE as some value, just can't figure out what it is. Maybe it is just doing it on the fly and doesn't store it anyway, but either way...
1403592323
Alex L.
Pro
Sheet Author
Neo Art said: Hrm this will work in a pinch. it's [[floor((@{"charactername"|stat-10)/2)]]. Still I'd think the mod is being stored SOMEWHERE as some value, just can't figure out what it is. Maybe it is just doing it on the fly and doesn't store it anyway, but either way... Its [ability]-mod replacing [ability] with the name of the ability, this and most of the other main stats are listed on the page where you select the sheet.
oooh -mod, ok, that makes life profoundly easier, thanks!