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/cancelRequest.inc

29 lines
808 B
PHP

<?php
class beta5_alliance_cancelRequest {
function beta5_alliance_cancelRequest($lib) {
$this->lib = $lib;
$this->db = $this->lib->game->db;
}
// Cancels a request to join an alliance
function run($p, $a) {
$this->db->query("UPDATE player SET alliance=NULL,a_status=NULL,a_vote=NULL WHERE id=$p");
$ainf = $this->lib->call('get', $a);
$tag = addslashes($ainf['tag']);
$l = $this->lib->call('getKeepers', $a);
$tm = time();
foreach ($l as $id) {
$this->db->query("INSERT INTO message(player,sent_on,mtype,ftype,is_new) VALUES($id,$tm,'alint','INT',TRUE)");
$q = $this->db->query("SELECT id FROM message WHERE player=$id AND sent_on=$tm AND ftype='INT'");
list($mid) = dbFetchArray($q);
$this->db->query("INSERT INTO msg_alint VALUES($mid,$a,'$tag',$p,1)");
}
}
}
?>