• 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

Traits as Pre-Reqs?

jephkay

Member
What is the expression for checking for a given trait as a pre-req for a feat? For example: Secret Signs [Local] requires Int 13 and Absalom Affinity.

Defining Absalom Affinity as a trait was easy enough.

But now, we want to look at the traits to see if we can have the Regional Feat of Secret Signs. #hastrait does not seem to exist.
 
#hasfeat[XXX] is a shortcut for hero.tagis[HasFeat.XXX]

Traits use HasTrait.XXX, but no #hastrait[] macro has been added, so:

hero.tagis[HasTrait.XXX] <> 0
 
Is there a resource for all these commands listed? Kinda like a good old fashioned o'reilly source book?

I found the kit wiki and tried searching, knowing it had a #hasfeat, I assumed #hastrait and failed. I eventually found this to fix it.
 
Is there a resource for all these commands listed? Kinda like a good old fashioned o'reilly source book?
Your question is covered in the FAQ actually. But the best bet is the Search feature of this forum. Most likely as you found what your looking for has already been asked and answered. :)
 
Back
Top