• 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

Trying to set "Vampire Only" pre-req...

I have found the information tVampire and Template.Vampire via the help info, but I haven't found how I'd put this to a script. I've gotten as far as this:

Code:
 validif(#template[tVampire])

I've also tried:

Code:
 validif(#Template.Vampire)

Seeking a little help with this. :confused:
 
You're trying to test the Template.Vampire tag, so you need to do this:

Code:
validif(tagis[Template.Vampire] <> 0)

In the prereq. Alternatively, you could add an exprreq of simply:

Code:
tagis[Template.Vampire] <> 0

Which should be shorter and have the same effect.
 
Back
Top