wolfbook22
New member
Due to a magic item and the difference in when dragons gain the ability to cast spells, my dragon wizard character gains an increase to an Arcane Caster level. So far, I have created a Racial Special that I am able to add, pick an arcane source, and increase the caster level once.
However, once I add a specific template to the hero, this should increase the caster level by another 1 (total 2). Is it possible to do this all in one Eval Script, or is there another place some of this should be done?
This is what I have so far in the Eval Script.
Thanks in advance
However, once I add a specific template to the hero, this should increase the caster level by another 1 (total 2). Is it possible to do this all in one Eval Script, or is there another place some of this should be done?
This is what I have so far in the Eval Script.
Code:
Phase: First
Priority: 100
~ This works for all normal classes, increase Caster lvl by 1
field[usrChosen1].chosen.field[cCasterLev].value += 1
~If the template is added
~ if (tmSpTr04 = true) then
~ field[usrChosen1].chosen.field[cCasterLev].value += 1
Thanks in advance