• 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

Armor Proficiency: How to Add / Check

daplunk

Well-known member
What is the proper method to handle Armor Proficiency?

To add I have been using these. These appear to work. It enables the ability to select the armor.

perform hero.assign[ArmProfGrp.ArmorHeavy]
perform hero.assign[ArmProfGrp.ArmorMed]
perform hero.assign[ArmProfGrp.ArmorLight]

The next step however is to check is the proficiency is applied. I copied this over from the PF Feats and they compile and are certainly doing something as adding this displays an error message and grays the feat out.

tagis[Hero.ProfHeavy] <> 0

This issue however is the second feat does not recognise the proficiency added by the first feat.

Feat 1: Eval Script: perform hero.assign[ArmProfGrp.ArmorHeavy]
Feat 2: Expr-reqs: tagis[Hero.ProfHeavy] <> 0

Has anyone got this working?
 
Last edited:
Why are you checking for a different tag in Feat two than you applied in Feat one? I am confused?
 
Because i havn't figured out how to use that tag in code without spilling an error ;)

I've since proved the PF code is not working. Yet to figure out the correct code for the 5e method though.
 
An expr-req of:
tagis[ArmProfGrp.ArmorHeavy] <> 0

gives you an error? What does the error say?
 
No error i had the syntax wrong.

I was trying the following:
tagis[Hero.ProfHeavy] <> 0
tagis[Hero.ArmProfGrp.ArmorHeavy] <> 0
tagis[Hero.ArmProfGrp] <> 0
tagis[Hero.ArmorHeavy] <> 0

Yours worked perfectly: tagis[ArmProfGrp.ArmorHeavy] <> 0

Thanks Aaron, your a life saver.
 
Back
Top