View Single Post
  #2  
Old 12-12-2011, 01:45 PM
dr00dguy
Fire Beetle
 
Join Date: Feb 2011
Posts: 8
Default

I'm not a coder by any means but I would think using a timer would do the trick.

Code:
sub EVENT_SPAWN {

quest::settimer("dance",1);
}

sub EVENT_TIMER {

     if ($timer eq "dance")
     {
     quest::doanim(58);
     }
}
Reply With Quote