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/actions/getTrustedAllies.inc

55 lines
1.2 KiB
PHP
Raw Permalink Normal View History

2016-01-10 11:01:49 +01:00
<?
//-----------------------------------------------------------------------
// LegacyWorlds Beta 5
// Game actions
//
// beta5/actions/getTrustedAllies.inc
//
// This action returns all data associated with the trusted allies list.
//
// Parameters:
// $player Identifier of the player
//
// Possible return values:
// an array The trusted allies data for the player
// NULL Error, player not found
//
// Copyright(C) 2004-2008, DeepClone Development
//-----------------------------------------------------------------------
class beta5_getTrustedAllies
extends game_action {
public function __construct($game) {
parent::__construct($game, array(
"players" => "beta5/player"
));
}
public function run($player) {
// Check if the player ID is not null
if (is_null($player)) {
return null;
}
$player = (int) $player;
// Check if the player is valid
$playerRecord = $this->players->call('get', $player);
if (is_null($playerRecord)) {
return null;
}
// Return data
return array(
"allies" => $this->players->call('getAllies', $player),
"reverse" => $this->players->call('isAllyOf', $player),
"blacklist" => $this->players->call('getTAListBans', $player)
);
}
}
?>