• 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

Prereq - Draconic Language

Jhalad

Well-known member
Okay, I've dug through the forums, and I've dug through the help files, and I've dug through the feats/prestidge classes in the program.

How on earth do I make the draconic language a prereq for a feat. I can't seem to get the language for the tag correct.

I thought:

#haslanguage[lDraconic] <> 0

would work, but I keep getting told:

Error parsing left-side expression in related comparison

I'm guessing this means that it doesn't recognize

#haslanguage

Is it even possible to make a language a prereq?
 
Okay, I've dug through the forums, and I've dug through the help files, and I've dug through the feats/prestidge classes in the program.

How on earth do I make the draconic language a prereq for a feat. I can't seem to get the language for the tag correct.

I thought:

#haslanguage[lDraconic] <> 0
The stuff that starts with a # is just a macro. So #hasfeat just gets replaced with an actual instruction like hero.tagis[HasFeat.XXX]. So all you are really looking for is tag.

Is it even possible to make a language a prereq?
Yes the scripting language HL uses is VERY powerful so pretty much anything is possible. What you are looking for is the following:
Code:
hero.childfound[lDraconic].tagis[thing.activated] <> 0
 
Back
Top