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 .
×
Due to an outage with an external service provider, we’re experiencing intermittent loading issues on Roll20. Please refresh if needed.
Create a free account

Pathfinder: Inspire Courage (Level -2)

I am playing a character that gets the Bard Inspire Courage equal to their class level -2 The normal buff for Inspire Courage is this: 1+floor((@{level}+1)/6) Now I have tried the following but it doesn't seem to "floor" at 1 1+floor((@{level-2}+1)/6) It will put the buff to 0 and I don't understand why Can anyone help
It looks like you've placed math inside the attribute call @{level} instead of next to it. You can also combine the -2 to level with the existing +1 in the expression and change it to a -1 like this 1+floor((@{level}-1)/6)