• 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

Add to the tertiary abilities

Frodie

Well-known member
I want to add to the tertiary abililties not replace them. Here is the replace script:


final Phase 9999999

~we'll overwrite the tertiary abilities' expression, since we need
~to make them use primary rogue abilities

linkage
.field[cCstS3Expr].text = "(SpecSource.cHelpRog) & !Helper.Secondary & !Helper.Tertiary"
 
Try a timing after Final/9999999, rather than at Final/9999999 (add another 9 to the priority of your script).
 
Seem not to be it. I want to add the Rouge Talents as an option with my other tertiary

1st script

post levels 5000
~modify our linked class to add rogue talents

~we'll use the tertiary abilities slot for these

linkage
.field[cCustTeTot].arrayvalue[11] += 1
linkage
.field[cCustTeTot].arrayvalue[15] += 2
linkage
.field[cSpec3rdSi].text = "Rogue Training"

2nd script

Final/9999999

~we'll overwrite the tertiary abilities' expression, since we need
~to make them use primary rogue abilities

linkage
.field[cCstS3Expr].text = "(SpecSource.cHelpRog) & !Helper.Secondary & !Helper.Tertiary"
 
Are you sure it's just a timeing issue? I am not trying to replace all my tertiary abililties, just add the rogue talents to them.
 
Your script includes an =, so you're replacing whatever's there. Try "&=" to append text to whatever's there.
 
lol, well that adds all the tertiary, I just want to add the Rogue to my custom abilities. Will this work?

~we'll overwrite the tertiary abilities' expression, since we need
~to make them use primary rogue abilities

linkage
.field[cCstS3Expr].text = "(SpecSource.cHelpRog) & (SpecSource.cHelpMdH) & !Helper.Secondary & !Helper.Tertiary"
 
Last edited:
Got it:

~we'll overwrite the tertiary abilities' expression, since we need
~to make them use primary rogue abilities

linkage
.field[cCstS3Expr].text = "(SpecSource.cHelpRog + SpecSource.cHelpMdH) & !Helper.Secondary & !Helper.Tertiary"
 
The "+" works?

With the !Helper.Tertiary, does that still allow the Tertiary abilites of your base class?
 
Last edited:
Found a issue, It shows my base classes primary abilities, but not the tertiary abilities. Hum I thought I had it. I'll keep working and see what I get.

Well I found if I take out the & !Helper.Secondary or !Helper.Tertiary it will show the base class Tertiary, but also all the primary

This is what I got, it shows everything, IDK how to cut back to the just show the base class tertiary?

~we'll overwrite the tertiary abilities' expression, since we need
~to make them use primary fighter abilities

linkage
.field[cCstS3Expr].text = "(SpecSource.cHelpFtr + SpecSource.cHelpMdH)"
 
Last edited:
Back
Top