• Please note: In an effort to ensure that all of our users feel welcome on our forums, we’ve updated our forum rules. You can review the updated rules here: http://forums.wolflair.com/showthread.php?t=5528.

    If a fellow Community member is not following the forum rules, please report the post by clicking the Report button (the red yield sign on the left) located on every post. This will notify the moderators directly. If you have any questions about these new rules, please contact support@wolflair.com.

    - The Lone Wolf Development Team

Bonus hit points for each character level

Hi, Thanks for all the past help.

I'm creating a template (Paragon, page 209 in "Epic Level Handbook") that, among other benefits, gives the character 12 extra hit points for every level they have. So if a character has 20 total levels, they will have an extra 240 hit points. Another way to say this is that every time the character goes up a level, they receive an extra 12 hit points from having this template. These extra hit points are also retroactive, so that if the character was at 10th level before chosing this template, the template would also give 120 extra hit points for those existing levels.

What is the Eval Script??? for this?
Thanks, Wolf
 
Here's +1 HP/HD (UserPreAt, 100):

~Count the number of hit dice
var HD as number
HD = hero.tagcount[Hero.HitDice]
~ Add to our HP
hero.child[Totals].field[tHP].value += HD
 
Back
Top