all of my book use scripts to call a quest into activation. but the thing i have noticed is that if i use addspell inside of ANY if statement regardless of quest, object, or effect script and regardless of any begin block it will not run, compiles but it effectivly ends the script. nothing after addpsell works either
scn script
begin gameMode
if GlobalVarDoOnce == 1
message"this DOES print"
player.addspell spell'this does not happen'
message "this does not print"
message "neither does this"
set GlobalVarDoOnce to 2'this does not happen'
endif
end
begin onEquip player
set GlobalVarDoOnce to 1
end
using the console command show GlobalVarDoOnce returns 1 so i know the onEquip block works EDIT- I have finished the scripts for my mod and it all works but I would still like to know why I cant get addspell to work inside of an if statement and as to using vanilla script: i'm not, both scripts are mine. I read one of the tutorials on tescs wiki and the rest i got from tescs wiki explanations of functions and commands. a semester of c++ helps too. tried to clean the code up a little