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
I have tried numerous timings but cannot get it to work. :/
Ideas?
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?