• 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

Skills and Armor

Manalishi66

Well-known member
Looking for some help on new class abilities that I'm working on. This ability would reduce Armor Check penalties to 0 for a specific skill (such as acrobatics) when wearing light armor. Looked for refrences but found no help. Could someone please help.

Donald
 
If you have Data File Debugging turned on you can look at the fields on the skills and there is a field for the armor check penalty on each skill.
 
Apply the ImpArChInf.WHATEVER tag to the hero to completely eliminate ACP for a particular skill. For example, ImpArChInf.skAcrobatic. There are similar tag groups to reduce ACP by 1 to 5 points for a specific skill (ImpArmChk1, ImpArmChk2, etc).
 
You'll want a script since he said to apply it to the hero

Code:
perform hero.assign[ImpArChInf.skAcrobat]
 
Back
Top