• 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

Language pre-req

Sendric

Well-known member
So in searching around, it appears language pre-reqs are handled in Pick-reqs. However, it appears that you can't do or statements there. I have a pre-req that requires the character to speak one of four languages (Auran, Aquan, Ignan, or Terran). I can't get a valid message with one of these languages in either the Eval Rules or Pre-reqs areas. Here is what I have at the moment:

in Eval Rules, tried both Pre-levels 9000 and Pre-levels 11000 (before and after the timing on tasks for the languages)
Code:
validif (hero.childfound[lAuran].tagis[thing.activated] <> 0)

Even with Auran selected, it gives me an error message. I can handle the or part of the equation later, but my question is, can you do language pre-requisites outside of Pick-reqs?
 
d20 does not make use of thing.activated - everything in d20 will have that tag, so it's not something you should be testing for.

Code:
validif (hero.childlives[lAuran] <> 0)
 
Back
Top