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);
}
...