• 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

Adding Additional Language Choices

smokeh

Member
I'm trying to add an additional language to my minion after a special ability is chosen. I found a feat called "Linguist" that adds languages, but it's adding them as 'Background Languages', not the Languages under the 'Race' tab.

So this code doesn't really work for a minion, because there is no Background tab for the minion.

Code:
minion[Familiar].child[resLangBck].field[resMax].value += 1

Is there a way to add additional language choices on the Race tab?
 
Last edited:
Sigh, sometimes just writing out a problem brings you to a solution. I figured it out on my own about 5 minutes after posting this, so if anyone else has this problem here is the solution:

Code:
minion[Familiar].childfound[EP_AerChas].field[rLanguages].value += 1

EP_AerChas is my race ID.
 
Back
Top