Ive been messing with timers and I was just wondering if anyone knew why in the world this boss will NOT cast this spell, has equal brackets, ID is correct, syntax looks fine.. so wth?
Code:
sub EVENT_COMBAT {
if ($combat_state == 1) {
quest::settimer(test,3); }
if ($combat_state == 0) {
quest::stoptimer(test); }
sub EVENT_TIMER
{
if($timername == test)
{
quest::castspell($userid,92);
}
}}
Thanks in advance. Lol im sure its a nub mistake >_<