• 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

Stacking problem

Malevicus

Member
Hello,

I have created a golem with:

Dexterity 13 (+1 AC bonus)
Natural Armor +10*
Large creature (-1 AC penalty)

Problem: Natural Armor and Dex AC bonus do not stack!? Increasing Dex Ability points does not result in any increase in AC as long as Natural Armor bonus is bootstrapped. Removing Natural Armor from the Bootstrapps list normalises the effect of increased DEX-bonus on Total AC. AC penalty due to the size (Large) of the golem stacks with the Natural Armor +10 and gives the monster a total of +9 extra AC points.

* made a Natural Armor +10 "thing" in the Armor Tag (mNatArm10) and Bootstrapped it to the monster race and it gives the character +10 in AC.

How do I proceed to get this right?

Malevicus
 
Instead of bootstrapping something, try adding an Eval Script to add the natural armor bonus. Like so:

hero.child[ArmorClass].field[tACNatural].value = hero.child[ArmorClass].field[tACNatural].value + 10
 
Back
Top