Look at the bic quest in qinimi on PEQ. I got all the group/raid members and pushed their names to an array. Mainly this portion:
Code:
...
$group = $entity_list->GetGroupByClient($client);
if ($group) {
for ($count = 0; $count < $group->GroupCount(); $count++) {
push (@player_list, $group->GetMember($count)->GetName());
}
...