I'm looking at the feats that increase class level for certain purposes, such as Practiced Spellcaster and Natural Bond. It looks like Natural Bond isn't working, and there's an author comment about that. So far, the eval script looks like:
This doesn't seem to be working (the Animal Companion is unaffected when I add a class other than Druid), but even if it were it would not cap out at max HD (I don't think).
Practiced Spellcaster looks like:
This appears to be working. I've played around with it some, trying to mimic the Practiced Spellcaster, but since I'm a bit of a newb, I can't get it to work. Anyone have any thoughts on how to make Natural Bond work?
Edit: This would be for d20 and/or Pathfinder.
Code:
~ Add 3 to our companion level.
hero.childfound[cAnimClass].field[CompClLev].value += 3
hero.childfound[cAnimComp].field[CompLevBas].value += 3
This doesn't seem to be working (the Animal Companion is unaffected when I add a class other than Druid), but even if it were it would not cap out at max HD (I don't think).
Practiced Spellcaster looks like:
Code:
field[fChosen].chosen.field[cCasterLev].value += 4
field[fChosen].chosen.field[cCasterLev].value = minimum(field[fChosen].chosen.field[cCasterLev].value, herofield[tHitDice].value)
This appears to be working. I've played around with it some, trying to mimic the Practiced Spellcaster, but since I'm a bit of a newb, I can't get it to work. Anyone have any thoughts on how to make Natural Bond work?
Edit: This would be for d20 and/or Pathfinder.