View Single Post
  #8  
Old 03-22-2010, 10:56 PM
alphagnome
Fire Beetle
 
Join Date: Dec 2009
Location: VA
Posts: 18
Default

Quote:
Originally Posted by trevius View Post
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);
}
Ok I tried it like you said but same result. I don't know if the function is just broken. I guess I'll have to find a different way to do this. Has anyone else successfully used this function?
Reply With Quote