Lone Wolf Development Forums

Lone Wolf Development Forums (http://forums.wolflair.com/index.php)
-   HL - D&D 5th Edition SRD (http://forums.wolflair.com/forumdisplay.php?f=89)
-   -   Max Dex Bonus (http://forums.wolflair.com/showthread.php?t=59303)

Carpesimia October 9th, 2017 04:16 PM

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?

dungeonguru October 9th, 2017 06:12 PM

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

Carpesimia October 10th, 2017 06:41 PM

Sweet. This is precisely what I was looking for!!

Thank you.


All times are GMT -8. The time now is 03:59 PM.

Powered by vBulletin® - Copyright ©2000 - 2024, vBulletin Solutions, Inc.
wolflair.com copyright ©1998-2016 Lone Wolf Development, Inc. View our Privacy Policy here.