View Single Post
  #4  
Old 05-07-2011, 04:25 AM
joligario's Avatar
joligario
Developer
 
Join Date: Mar 2003
Posts: 1,498
Default

I haven't heard of this failing. Agnarr port works off of getraid.. but I use this in the qinimi bic raid and it works fine there:

Code:
...
        $raid = $entity_list->GetRaidByClient($client);
        if ($raid) {
          for ($count = 0; $count < $raid->RaidCount(); $count++) {
            push (@player_list, $raid->GetMember($count)->GetName());
          }
          foreach $player (@player_list) {
            $pc = $entity_list->GetClientByName($player);
            $pc->MovePC(281,-521,36,-8,166);
           }
...
Reply With Quote