This repository has been archived on 2024-07-18. You can view files and clone it, but cannot push or open issues or pull requests.
lwb5/scripts/game/beta5/alliance/library/getMembers.inc

28 lines
558 B
PHP
Raw Normal View History

2016-01-10 11:01:49 +01:00
<?php
class beta5_alliance_getMembers {
function beta5_alliance_getMembers($lib) {
$this->lib = $lib;
$this->db = $this->lib->game->db;
}
// Reads the list of alliance members and their ranks
function run($aid) {
$q = $this->db->query(
"SELECT p.id,p.name,a.name,p.a_grade FROM player p,account a "
. "WHERE p.alliance=$aid AND p.a_status='IN' AND a.id=p.userid");
$rs = array();
while ($r = dbFetchArray($q)) {
$rs[$r[0]] = array(
"name" => is_null($r[1]) ? $r[2] : $r[1],
"rank" => $r[3]
);
}
return $rs;
}
}
?>