I have a template which, amongst other things, increases the Charisma of Undead it can be added after the skeleton template as a skeleton is Undead.
However because the Skeleton template forces the Charisma score to 10 I need to add the modifier after the Skeleton template is applied.
How can I override the aNormForce tag to add the bonus to the Cha ability? I don't want to revert to the Base creatures Cha but just add to the 10 set by the Skeleton template.
However because the Skeleton template forces the Charisma score to 10 I need to add the modifier after the Skeleton template is applied.
Code:
~ Force our Wisdom to 10 and our Charisma to 10
hero.child[aWIS].field[aNormForce].value = 10
hero.child[aCHA].field[[B]aNormForce[/B]].value = 10
How can I override the aNormForce tag to add the bonus to the Cha ability? I don't want to revert to the Base creatures Cha but just add to the 10 set by the Skeleton template.