• 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

Template Help - HP Mulitiplier?

IronGolem

Member
Good morning everyone,

I'm attempting to add the Elite Template from the World of Warcraft core book and I'm not seeing a way to do the x4 multiplier on the hit points.

Am I missing something?

Thanks
IG
 
I use this code for a 20% boots in HP:
Post-attributes 15000
Code:
var hpbonus as number
var totalhp as number
totalhp = container.child[Totals].field[tHP].value+container.child[Totals].field[tBonusHP].value
hpbonus = round(totalhp*0.2,0,1)
container.child[Totals].field[tBonusHP].value += hpbonus
 
Back
Top