• 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

Archetype limiting class custom abilities available

frumple

Well-known member
I have an archetype that limits which primary custom abilities a class (in this case the Arcanist) can take. I figure I need to modify the class's helper field cCstSpExpr, but I cannot get the timing correct.

Here is the code I have
Code:
~ we need to set our scientific exploit selections. We do this
~ by eliminating what we cannot select.

var filter1 as string

filter1 = "!(thingid.cArcBldDev|thingid.cArcFamili|thingid.cArcMetaKn|thingid.cArcMetami|thingid.cArcPotMag|thingid.cArcQuiStu|thingid.cArcSonBla|thingid.cArcGrMeta)"


hero.child[cHelpArc].field[cCstSpExpr].text &= "&" & filter1

I have tried numerous timings but cannot get it to work. :/

Ideas?
 
Back
Top