View Single Post
  #6  
Old 03-22-2010, 08:43 PM
trevius's Avatar
trevius
Developer
 
Join Date: Aug 2006
Location: USA
Posts: 5,946
Default

If you are using one of the entity list searches, you should just have to do something like this:

Code:
 my @clientlist = $entity_list->GetClientList();
foreach $ent (@clientlist)
 {
           my $ClientName = $ent->GetName();
           quest::say("Trying to move $ClientName.");
           $ent->MovePC(19, 456, 825, 9);
}
__________________
Trevazar/Trevius Owner of: Storm Haven
Everquest Emulator FAQ (Frequently Asked Questions) - Read It!
Reply With Quote