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/fleet/library/getLocation.inc

22 lines
449 B
PHP

<?php
class beta5_fleet_getLocation {
function beta5_fleet_getLocation($lib) {
$this->lib = $lib;
$this->db = $this->lib->game->db;
}
// Returns the list of fleets in orbit around a planet
function run($pid, $pl = null) {
$q = $this->db->query("SELECT id,name FROM fleet WHERE location = $pid" . (is_null($pl) ? "" : " AND owner=$pl"));
$a = array();
while ($r = dbFetchArray($q)) {
$a[$r[0]] = $r[1];
}
return $a;
}
}
?>