View Single Post
  #4  
Old 12-14-2011, 05:30 PM
dr00dguy
Fire Beetle
 
Join Date: Feb 2011
Posts: 8
Default

yah noticed that after i posted but was to late to edit lol. and I am sure there is a better way to do it, but its a start.

Code:
sub EVENT_SPAWN {

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

sub EVENT_TIMER {

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