View Single Post
  #3  
Old 04-17-2009, 12:35 PM
Randymarsh9
Dragon
 
Join Date: Dec 2007
Posts: 658
Default

So, basically would it be something like this:
Code:
sub EVENT_ENTERZONE{
quest::settimer("zonekick",30);
}
sub EVENT_TIMER{
if ($timer eq "zonekick"){
 quest::stoptimer("zonekick");
 quest::movepc(202, -107,-190.-156);
 }
}
I have never used timers in any quests before, so I'm not sure what I'm doing
Reply With Quote