is there any problems with qglobal? Im trying to update the variable, and it doesnt work. heres example.
Code:
quest::setglobal("zavious",1,0,"M2");
that will create the variable zavious, and will set it to 1.. however when I try and create
Code:
quest::setglobal("zavious",2,0,"M2");
after a quest::say(""); and it wont update.. I even tried
Code:
quest::delglobal("zavious");
quest::setglobal("zavious",2,0,"M2"); #together
and
Code:
quest::delglobal("zavious"); #by itself
is this a bug that it wont delete the global variable or update it from 1 to 2.. it was originally 0.
Sory for bothering you again btw.. I just dont understand why its not updating.