• 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

Max Dex Bonus

I saw a similar thread in the pathfinder section, but this one is a little different.

I traded a wish to my DM in order for an "All powerful item". He awarded me with a trinket that basically negates ALL dex penalties on Medium armor and below.

My first thought was to go in and just make some armor matching the regular armor, and make it LIGHT, so it has no dex issues. But then I'd need to change my armor each time. And it's really not right.

What I need are the variables, so i could write an eval script to set the penalties for stealth and ac bonus to zero. Then I could upgrade armor, etc, without needing to pop into the editor all the time.

Can this be done?
 
You'll want your script to delete these tags on your armor:

Helper.StealthDis <-- Items with this tag impose the disadvantage
ArmorClass.Medium <-- Items with this tag impose the +2 Dex mod limit on AC.

and assign
ArmorClass.Light <-- This tag will allow full Dex.

You'll want to put the script on your trinket that checks to make sure it is equipped/attuned before you loop through your equipped armor

so something like

foreach pick in hero from BaseArmor where "Helper.CurrArmor"
perform eachpick.delete[Helper.StealthDis]
perform eachpick.delete[ArmorClass.Medium]
perform eachpick.assign[ArmorClass.Light]
nexteach
 
Back
Top