View Single Post
  #2  
Old 04-03-2011, 12:16 PM
joligario's Avatar
joligario
Developer
 
Join Date: Mar 2003
Posts: 1,498
Default

Should be something like this:

Code:
sub EVENT_ENTERZONE {
  my $pet_id = $client->GetPetID();
  if ($pet_id) {
    $pet = $entity_list->GetNPCByID($pet_id);
    $pet->Depop();
  }
}
Reply With Quote