• 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

Creating a custom item that gives bonuses in rage

SergioSF

New member
Hello!

I have been trying for several days to create a custom item that gives a +1 Morale bonus to Strengt,Con and Will when in rage but have not had much luck. Does anyone have any advice?
 
If you look at the fields on the Rage Class ability. Specifically at the generic abValues you notice something familiar?
Image1.jpg
It looks like the bonus to Str/Will/Con to me. So all we have to do is adjust those values with your +1 increase before it adds to the attributes. The only thing strange here is that the abValue3 is the Con Score after its adjusted by feats. So we don't actually have to adjust it.

So we will want an early timing like "Pre-Levels/10000".

You don't say but I assume your magic item can be worn. So I have added the script logic to only run when worn.

Code:
~ If not equipped get out now!
doneif (field[gIsEquip].value <> 1)

~ Increase Str/Con by one
#value[cBbnRage] += 1
~ Increase Will save by one
#value2[cBbnRage] += 1
 
Back
Top