• 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

Help with traits

mbran01

Well-known member
I was hoping someone could help me with this. I have created a new faction that makes availaible new traits. How do I limit these traits only to characters with this faction. I have tried using #hasfaction[facWizGld] <> 0 and I get the error: error parsing left-side expression in relational comparison.

any thoughts are appreciated.
 
I don't think you need a script. Instead of that, try selecting "Faction" and "<name_of_faction>" under Trait Categories.
 
Is it possible to make it available to multiple factions?

You need a script.

Look up something that does multiple OR prereqs from Core or APG.
Notice code like:
@valid = 0
if blah
@valid = 1
elseif blah
@valid = 1
endif
 
The list of factions is a list of checkboxes - there's no limit on how many or how few can be checked, and they're OR-ed together for the test.
 
Back
Top