I'm trying to create a feat that improves max Dex and armor check penalties by 1 like Armor Training for a selected type of armor (similar to Weapon Focus). The problem is that entering EquipType.Armor in the custom expression field (restricted to All Things) always results in a "Nothing to choose from" message when the feat is added to a character.
Also, disabling the user selection entirely still has no effect on any purchased armors. Here's my simplified script:
The script timing is the same as those from Weapon Focus since I started with a copy of that feat as my base.
Thanks in advance.
Also, disabling the user selection entirely still has no effect on any purchased armors. Here's my simplified script:
Code:
~ If we're disabled, do nothing
doneif (tagis[Helper.FtDisable] <> 0)
~ If we haven't chosen anything, get out now
~doneif (field[usrChosen1].ischosen + tagis[Target.?] = 0)
~ If we're not shown, just get out now
doneif (tagis[Helper.ShowSpec] = 0)
~Improve the armor check penalty and max dex stats of our armors.
foreach pick in hero from BaseArmor
eachpick.field[arArmorChk].value += field[abValue].value
eachpick.field[arMaxDex].value += field[abValue].value
nexteach
The script timing is the same as those from Weapon Focus since I started with a copy of that feat as my base.
Thanks in advance.
Last edited: