I'm trying to implement the Steadfast Determination feat, from PH2 (the 3.5e PH2); it allows the character to use their Con modifier instead of their Wis modifier for Will saves. Is there any way or function that will allow me to easily replace the Wis modifier with the Con mod (if it's larger)?
I tried this, in the Eval Scripts section:
~ If we're disabled, do nothing
doneif (tagis[Helper.FtDisable] <> 0)
container.child[vWill].field[Bonus].value += hero.child[aCON].field[Bonus].value - hero.child[aWIS].field[Bonus].value
But it doesn't do anything. I tried setting the Phase to Final, Post-Attributes, & Pre-Attributes, but it didn't make any difference. The Will save bonus doesn't change.
I also tried using hero.child[vWill]..., but didn't work.
What am I missing?
I tried this, in the Eval Scripts section:
~ If we're disabled, do nothing
doneif (tagis[Helper.FtDisable] <> 0)
container.child[vWill].field[Bonus].value += hero.child[aCON].field[Bonus].value - hero.child[aWIS].field[Bonus].value
But it doesn't do anything. I tried setting the Phase to Final, Post-Attributes, & Pre-Attributes, but it didn't make any difference. The Will save bonus doesn't change.
I also tried using hero.child[vWill]..., but didn't work.
What am I missing?