• 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

Survival as Class Skill for prereq.

Pezmerga

Well-known member
What would be the proper expression?
I am guessing Expr-reqs is the way to go about it.

#hasClassSkill[skSurvival] <> 0
Obviously this doesn't work, but I can't find the proper syntax. Anyone know? I can't think of any existing feats or anythign that has having a class skill as a prereq...and I tried going through the floating info windows.
Thanks
 
No luck with ride feats. They all just require ranks.

Starting to think maybe I should use a Pre-req script.

Code:
foreach pick in hero from Class where "ClassSkill.skSurvival"
  @valid = 1
  nexteach
Doesn't validate even if a class skill

Code:
foreach pick in hero from BaseSkill where "ClassSkill.skSurvival"
  @valid = 1
  nexteach
Validates even if it isn't a class skill...

Edit:
Code:
var searchexpr as string
searchexpr = tagids[ClassSkill.skSurvival]

foreach pick in hero from BaseSkill where searchexpr
  @valid = 1
  nexteach
Works. In case anyone ever needs similar code :)
 
Last edited:
Right-click Survival on a blank character (make sure you have "Enable Data File Debugging" checked in the Develop menu first), and choose "Show Debug Tags for XXXXX".

Now, add a level of ranger, fighter, druid, or some other class that has Survival as a class skill.

Watch that list of tags - what changes?
 
It adds a Helper to make it a clas skill.

Each Skill appears to have the ClassSkill group name by default.
But not the ClassSkill Tag, that is added by Helper group name?
Which would be tagid Helper.ClassSkill ?

That right?
 
You found what I was hinting at - here's how to use it:

Code:
hero.child[skSurvival].tagis[Helper.ClassSkill] <> 0

(That's for an Expr-Req)
 
Last edited:
Back
Top