View Single Post
  #1  
Old 09-15-2010, 09:56 AM
Reynin89
Sarnak
 
Join Date: Apr 2010
Posts: 71
Default Custom Boss (test)

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 >_<
Reply With Quote