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

Pathfinder char sheet, healling spells

Hello there, i need help with a little tiny thing, i have this divine spellcaster lvl5 and i want to take the cure moderate wounds spell and limit my caster level to 10, how can i do that? I have searchen on the wiki, and other posts of the forum, but i do not find what i want to do. Sorry if my English is bad.
1591185805

Edited 1591185858
Oosh
Sheet Author
API Scripter
If I am understanding you correctly, you would want to change the Effect field to: Heal [[1d8+{@{caster1_level},10}kl1]] This will give you [[ 1d8 + @{caster1_level} ]] unless caster1_level is 11 or more, then it will give you: [[1d8 + 10 ]] Is this what you are asking for?
I think that is what i want. I am new here so im not sure, but it seems to work, thank you. Another question, about the same, i have the level of mi character, how can i add half of the level to a skill with daily uses? like [[3+@{level}]], but i need 3+Half levels
1591235138
Oosh
Sheet Author
API Scripter
You would use this format: [[ 3 + round(@{level}/2) ]] You have 3 options for rounding: round - standard rounding, 0.5 or more will round up to the next integer, under 0.5 will round down ceil - always round fractions up floor - always round fractions down I mostly play 5e, where floor is almost always the rule for character level calculations. For a level 5 character: [[ 3 + ceil (@{level}/2) ]] = [[ 3 + 3 ]] = 6 [[ 3 + floor (@{level}/2) ]] = [[ 3 + 2 ]] = 5 Hope this helps.
Thank you so much, it helped a lot.