Adding more specialized spells in wizard archetype
How would I add more secondary spells (for specialized spells) in an archetype I made?
In the wizard class it normally uses this code to set the secondary spells.
I tried putting that in the eval script in the archetype i made, and i changed the 1 to a 3, but it doesn't work. I tried doing it later in the timing, and tried adding with += to the value as well.. It is being set in the class Eval script in the wizard class, but I was wanting to change that in the archetype.
How would I add more secondary spells (for specialized spells) in an archetype I made?
In the wizard class it normally uses this code to set the secondary spells.
Code:
~Post Levels 20,000
~ If we have a specialized school, set our 'secondary spells required'
~ field to 1, because we need 1 spell of each level.
if (hero.tagis[SecSchAllw.?] <> 0) then
field[cSecSplReq].value = 1
endif
I tried putting that in the eval script in the archetype i made, and i changed the 1 to a 3, but it doesn't work. I tried doing it later in the timing, and tried adding with += to the value as well.. It is being set in the class Eval script in the wizard class, but I was wanting to change that in the archetype.
Last edited: