Thread: Moving mobs
View Single Post
  #5  
Old 12-07-2008, 02:03 AM
Striat
Sarnak
 
Join Date: Aug 2006
Posts: 60
Default

You're npcs are returning to their guard spots.

You'll want to use $npc->SaveGuardSpot(0); to prevent the return. for example,

Code:
sub EVENT_WAYPOINT {
  $npc->SaveGuardSpot(0);
}
Reply With Quote