• 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

How to check for particular race?

TojuXinshu

New member
Hi everyone,

I have a couple of magic items that only function in the hands of members of a particular race.

How do I check for race in the editor?

Cheers, TX
 
IIRC there should be a tag, something like IsRace attached to your character. I think that's all you need to script with a valid statement!
 
The best way to find answers like this is to do a New(Copy) on a thing that is already in HL that does something similar. In this case I looked up the feat "Razortusk" which is for half-orc's only.

The answer is what bodrin says but in Pathfinder Mathias has made many very useful macros that don't exist in d20.

So in this case to see if the race is half-orc we use:
Code:
#hasrace[rHalfOrc] <> 0
 
Last edited:
Back
Top