Thanks for the bug report. I'll look into it. Please let me know if there are any other bugs. Thank you!
Ok, I found the issue and I am not sure how to fix it. All the classes are running off the same class ability. I gave the classes a +1 AC bonus at a certain level. Works fine until you take the prestige class at a later level and then it adds all the bonuses up from 1st level on up.
Let me look around for something similar and see what I can find. Maybe change the prestige AC bonus to a different type of bonus that will not stack or something.
Ok I think this will work: I found this:
Post Levels
field[listname].text = field[thingname].text & " +" & field[xIndex].value
~ only run the rest for the first copy
doneif (tagis[Helper.FirstCopy] = 0)
~ If we're not shown, just get out now
doneif (tagis[Helper.ShowSpec] = 0)
~ If we're disabled, do nothing
doneif (tagis[Helper.SpcDisable] <> 0)
field[abValue].value += field[xCount].value
hero.child[ArmorClass].field[tACDodge].value += field[abValue].value
Seems to be working, so I attached the user file here. please let me know.
Ok, I found the issue and I am not sure how to fix it. All the classes are running off the same class ability. I gave the classes a +1 AC bonus at a certain level. Works fine until you take the prestige class at a later level and then it adds all the bonuses up from 1st level on up.
Let me look around for something similar and see what I can find. Maybe change the prestige AC bonus to a different type of bonus that will not stack or something.
Ok I think this will work: I found this:
Post Levels
field[listname].text = field[thingname].text & " +" & field[xIndex].value
~ only run the rest for the first copy
doneif (tagis[Helper.FirstCopy] = 0)
~ If we're not shown, just get out now
doneif (tagis[Helper.ShowSpec] = 0)
~ If we're disabled, do nothing
doneif (tagis[Helper.SpcDisable] <> 0)
field[abValue].value += field[xCount].value
hero.child[ArmorClass].field[tACDodge].value += field[abValue].value
Seems to be working, so I attached the user file here. please let me know.
Attachments
Last edited: