本文整理汇总了PHP中pocketmine\Server::getPlayer方法的典型用法代码示例。如果您正苦于以下问题:PHP Server::getPlayer方法的具体用法?PHP Server::getPlayer怎么用?PHP Server::getPlayer使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pocketmine\Server
的用法示例。
在下文中一共展示了Server::getPlayer方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: onCompletion
public function onCompletion(Server $server)
{
$player = $server->getPlayer($this->player);
if ($player instanceof Player && in_array($this->data, array(0, 1, 2))) {
$server->getPluginManager()->getPlugin("RankUp")->executeRankUp($player, $this->data, $this->gotreward);
}
}
示例2: onCompletion
/**
*
* @param Server $server
*/
public function onCompletion(Server $server)
{
if (($plugin = $server->getPluginManager()->getPlugin("GlobalShield")) instanceof GlobalShield) {
if (($player = $server->getPlayer($this->player)) instanceof Player) {
$plugin->readData($player, $this->result);
}
}
}
示例3: onCompletion
public function onCompletion(Server $server)
{
if ($this->r) {
$p = $server->getPlayer($this->p);
if ($p instanceof Player) {
$server->getPluginManager()->getPlugin("VoteReward")->give($p, $this->data);
}
}
}
示例4: onCompletion
public function onCompletion(Server $server)
{
$this->cache = unserialize($this->cache);
$this->data = unserialize($this->data);
$obj = json_decode($this->data, true);
$player = $server->getPlayer($this->player);
if (empty($obj)) {
if ($this->mode == 1) {
$server->getLogger()->critical("API Server Seems to be Down");
if (!$this->cfg["bypass-check"]) {
$player->close("", $this->cfg["bypass-message"]);
}
} else {
if ($this->mode == 2) {
$player->sendMessage("API Server Seems to be Down, try again later.");
}
}
} else {
if ($obj['status'] === "success") {
//Cache only if API returned success status string
if ($this->cache instanceof SimpleCache) {
if (!$this->cache->is_cached($this->ip)) {
$this->cache->set_cache($this->ip, $this->data);
}
}
if ($obj['host-ip']) {
$provider = $obj["org"];
$countryCode = $obj["cc"];
if ($this->mode == 1) {
if ($player != null) {
foreach ($this->cfgCommands as $command) {
$command = str_replace("%p", $player->getName(), $command);
$server->dispatchCommand(new ConsoleCommandSender(), $command);
}
if ($this->cfg["logging"]) {
$server->getLogger()->info(TextFormat::DARK_RED . $player->getName() . TextFormat::WHITE . " has been disconnected for using an anonymizer: IP Details -> " . $provider . "," . $countryCode);
}
}
} else {
if ($this->mode == 2) {
$player->sendMessage($this->ip . " belongs to a hosting organization");
$player->sendMessage("IP Details: " . $provider . "," . $countryCode);
}
}
} else {
if ($this->mode == 1) {
if ($player != null) {
if ($this->cfg["logging"]) {
$server->getLogger()->info(TEXTFormat::GREEN . $player->getName() . TextFormat::WHITE . " has passed VPNGuard checks.");
}
}
} else {
if ($this->mode == 2) {
$player->sendMessage($this->ip . " does not seem to belong to a hosting organization.");
$player->sendMessage("If you believe this is an error please report it to us to have it fixed.");
}
}
}
} else {
if ($this->mode == 1) {
if ($player != null) {
$server->getLogger()->warning(TextFormat::WHITE . "API Server Returned Error Message: " . TextFormat::RED . $obj['msg'] . TextFormat::WHITE . " when " . TextFormat::GOLD . $player->getName() . TextFormat::WHITE . " tried to connect");
if ((strpos($obj['msg'], "Invalid API Key") || strpos($obj['msg'], "Payment Overdue")) === false) {
$server->getLogger()->critical("Shutting down server to prevent blacklisting on API Database");
$server->shutdown();
return;
} else {
if (!$this->cfg["bypass-check"]) {
$player->close("", $this->cfg["bypass-message"]);
}
}
}
} else {
if ($this->mode == 2) {
$player->sendMessage("API Server Returned Error Message: " . $obj["msg"]);
}
}
}
}
}