TCArknight
Well-known member
Is there a way for a Special Ability bootstrapped to an archetype to see the class it's on for purposes of adjusting fields, etc?
For example, the Archetype I'm working on will be able to be taken by multiple classes (rogue or ninja for example) and I'd rather not make two copies of the same special ability if I don't have to.
right now I have:
This sets the Class bonus feats to 2 at 2nd level. I tried:
That gave an error about root not being able to reliably access bootstrap source for unique pick.
Thoughts?
For example, the Archetype I'm working on will be able to be taken by multiple classes (rogue or ninja for example) and I'd rather not make two copies of the same special ability if I don't have to.
right now I have:
Code:
hero.childfound[<class helper>].field[cBonFtTot].arrayvalue[1] = 2
This sets the Class bonus feats to 2 at 2nd level. I tried:
Code:
root.root.field[cBonFtTot].arrayvalue[1] = 2
That gave an error about root not being able to reliably access bootstrap source for unique pick.
Thoughts?