• 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

Language Eval Script

Angela2013

Well-known member
Can I get some help to design an Expr-Reqs Script where Draconic is needed before you get the feat?
 
Last edited:
Do you mean a prerequisite, where knowing the draconic language is needed to take the feat, like the dragon disciple prestige class?
 
Actually, the "pick-req" on Dragon Disciple is a deprecated way of checking languages, and should be avoided, because it can't distinguish conditional bootstraps of languages, or languages that are disabled in a script.

hero.tagis[HasLanguage.lDraconic] <> 0

is the way to write that as an expr-req
 
Here is how to figure that out for yourself - in the Develop menu, make sure Enable Data File Debugging is turned on, and then choose "Floating Info Windows...Show Hero Tags" near the bottom of the Develop menu.


Then, type in "Draconic" (without the quotes) in the search box on that tag list. Then add the draconic language to your character, and compare the list of tags before and after - that's how to figure out that HasLanguage.lDraconic on the hero is a quick reference that the language has been added.
 
Mathias that is the best advice I have ever had to figure out Expr-reqs. It worked perfectly. Thank you.

Though the advice to use HasLanguage.lDraconic is actually SpeakLang.lDraconic.
 
Last edited:
Sorry about that, I forgot to look at the PF1 HLC code - the PF1 HLO code has had some Id changes.
 
Back
Top