• 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

I freely admit I'm a complete gimbo when it comes to scripting...

DthShdw

Active member
Okay, project goal: Incorporating Elements originating from Forgotten Realms CS (specifically the ideas of Regions/Homelands) for a custom campaign setting.

Already figured out that a Inherrited Template is the simplest option for establishing this particular idea. However, I have a plan for different races to have different options even within the same homeland/region, I'm wondering how to script a requirement for Home: Sorintha - Human to restrict it to just humans?

I'm a good planner. Horrible engineer, so any help is greatly appreciated!
 
In the Expr-Reqs section of that template, add the following message:

Code:
Human race required.
And the Expression:

Code:
hero.tagis[Race.Human] <> 0
 
Back
Top