• 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

Or Expr-Reqs

Angela2013

Well-known member
I am making a skill with the prerequisites of Wisdom 13 or Knowledge (religion) 1 rank. I am trying to make the Expr-Reqs for the feat. I can get them singly but not as an or statement.
 
You'll need to use a Pre-req in this case, rather than an exprreq.

To translate an exprreq to a prereq, wrap "validif (" and ")" around the code you used in the Exprreq.

Or is simply done by putting each requirement on a separate line - validif means "if we satisfy this, set us as valid, and leave the prereq". So, in this case, if the Wisdom requirement is satisfied, it won't test the knowledge (religion) requirement.

So:
Code:
validif (#attrvalue[aWIS] >= 13)
validif (#skillranks[skKnowRel] >= 1)
 
Back
Top