• 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

Choice of PreReqs

Adammar

Member
How does one give a choice of PreReqs

ie. Warrior of the Wild feat requires STR or DEX over 13. Data has STR as 13, I add DEX of 13 and it requires both.

Thanks
 
How does one give a choice of PreReqs

ie. Warrior of the Wild feat requires STR or DEX over 13. Data has STR as 13, I add DEX of 13 and it requires both.

To test an "OR" condition, you should leave the Strength required blank and add an "ExprReq". The "ExprReq" uses an expression to verify the requirement and CAN include Boolean operations. For example, testing that either the Strength OR Dexterity is 13 should yield an ExprReq that looks like the following:

(#trait[attrStr] >= 13) | (#trait[attrDex] >= 13)
 
Back
Top