I've got a custom ability that that adds a couple of spells to the classes spell list. I've created the spells at the new level and didn't apply and class tags because I don't want every version of this class to get them. The classes spells are memorized like a cleric/paladin. So for adding the spells to the spell list I figured I'd have to do like the feat Unsanctioned Knowledge and it uses pulltags and pushtags to add the spells. Ok that shouldn't be a big deal, but I have one problem that I can't find examples of.
the code on the feat is:
Well the pushtags part is easy, I just need to change the paladin helper to my class helper, but what I'm not sure is the transition to get to the spell without using the usrChosen1 field. I'm not sure what usrChosen1 actually fills in there. Any help?
Thanks Andrew
the code on the feat is:
Code:
perform field[usrChosen1].chosen.pulltags[ClsAllowSp.?]
perform hero.childfound[cHelpPal].pushtags[ClsAllowSp.?]
Well the pushtags part is easy, I just need to change the paladin helper to my class helper, but what I'm not sure is the transition to get to the spell without using the usrChosen1 field. I'm not sure what usrChosen1 actually fills in there. Any help?
Thanks Andrew