Thread: Max Dex Bonus
View Single Post
dungeonguru
Senior Member
 
Join Date: May 2016
Posts: 608

Old 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
dungeonguru is offline   #2 Reply With Quote