fixed chatmessageplugin
This commit is contained in:
parent
62398b719a
commit
90124a4c9a
@ -5,6 +5,7 @@ namespace ManiaControl\Plugins;
|
||||
use ManiaControl\Commands\CommandListener;
|
||||
use ManiaControl\ManiaControl;
|
||||
use ManiaControl\Players\Player;
|
||||
use Maniaplanet\DedicatedServer\Xmlrpc\Exception;
|
||||
|
||||
/**
|
||||
* ManiaControl Chat-Message Plugin
|
||||
@ -94,10 +95,9 @@ class ChatMessagePlugin implements CommandListener, Plugin {
|
||||
public function chat_hi(array $chat, Player $player) {
|
||||
$command = explode(" ", $chat[1][2]);
|
||||
|
||||
if (isset($command[1])) {
|
||||
if(isset($command[1])) {
|
||||
$msg = '$g[$<' . $player->nickname . '$>$s] $ff0$iHello $z$<' . $this->getTarget($command[1]) . '$>$i!';
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
$msg = '$g[$<' . $player->nickname . '$>$s] $ff0$iHello All!';
|
||||
}
|
||||
$this->maniaControl->chat->sendChat($msg, null, false);
|
||||
@ -112,10 +112,9 @@ class ChatMessagePlugin implements CommandListener, Plugin {
|
||||
public function chat_bye(array $chat, Player $player) {
|
||||
$command = explode(" ", $chat[1][2]);
|
||||
|
||||
if (isset($command[1])) {
|
||||
if(isset($command[1])) {
|
||||
$msg = '$g[$<' . $player->nickname . '$>$s] $ff0$iBye $z$<' . $this->getTarget($command[1]) . '$>$i!';
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
$msg = '$g[$<' . $player->nickname . '$>$s] $ff0$iI have to go... Bye All!';
|
||||
}
|
||||
|
||||
@ -131,10 +130,9 @@ class ChatMessagePlugin implements CommandListener, Plugin {
|
||||
public function chat_thx(array $chat, Player $player) {
|
||||
$command = explode(" ", $chat[1][2]);
|
||||
|
||||
if (isset($command[1])) {
|
||||
if(isset($command[1])) {
|
||||
$msg = '$g[$<' . $player->nickname . '$>$s] $ff0$iThanks $z$<' . $this->getTarget($command[1]) . '$>$i!';
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
$msg = '$g[$<' . $player->nickname . '$>$s] $ff0$iThanks All!';
|
||||
}
|
||||
|
||||
@ -150,10 +148,9 @@ class ChatMessagePlugin implements CommandListener, Plugin {
|
||||
public function chat_gg(array $chat, Player $player) {
|
||||
$command = explode(" ", $chat[1][2]);
|
||||
|
||||
if (isset($command[1])) {
|
||||
if(isset($command[1])) {
|
||||
$msg = '$g[$<' . $player->nickname . '$>$s] $ff0$iGood Game $z$<' . $this->getTarget($command[1]) . '$>$i!';
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
$msg = '$g[$<' . $player->nickname . '$>$s] $ff0$iGood Game All!';
|
||||
}
|
||||
|
||||
@ -169,10 +166,9 @@ class ChatMessagePlugin implements CommandListener, Plugin {
|
||||
public function chat_gl(array $chat, Player $player) {
|
||||
$command = explode(" ", $chat[1][2]);
|
||||
|
||||
if (isset($command[1])) {
|
||||
if(isset($command[1])) {
|
||||
$msg = '$g[$<' . $player->nickname . '$>$s] $ff0$iGood Luck $z$<' . $this->getTarget($command[1]) . '$>$i!';
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
$msg = '$g[$<' . $player->nickname . '$>$s] $ff0$iGood Luck All!';
|
||||
}
|
||||
|
||||
@ -188,10 +184,9 @@ class ChatMessagePlugin implements CommandListener, Plugin {
|
||||
public function chat_hf(array $chat, Player $player) {
|
||||
$command = explode(" ", $chat[1][2]);
|
||||
|
||||
if (isset($command[1])) {
|
||||
if(isset($command[1])) {
|
||||
$msg = '$g[$<' . $player->nickname . '$>$s] $ff0$iHave Fun $z$<' . $this->getTarget($command[1]) . '$>$i!';
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
$msg = '$g[$<' . $player->nickname . '$>$s] $ff0$iHave Fun All!';
|
||||
}
|
||||
|
||||
@ -207,10 +202,9 @@ class ChatMessagePlugin implements CommandListener, Plugin {
|
||||
public function chat_glhf(array $chat, Player $player) {
|
||||
$command = explode(" ", $chat[1][2]);
|
||||
|
||||
if (isset($command[1])) {
|
||||
if(isset($command[1])) {
|
||||
$msg = '$g[$<' . $player->nickname . '$>$s] $ff0$iGood Luck and Have Fun $z$<' . $this->getTarget($command[1]) . '$>$i!';
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
$msg = '$g[$<' . $player->nickname . '$>$s] $ff0$iGood Luck and Have Fun All!';
|
||||
}
|
||||
|
||||
@ -226,10 +220,9 @@ class ChatMessagePlugin implements CommandListener, Plugin {
|
||||
public function chat_ns(array $chat, Player $player) {
|
||||
$command = explode(" ", $chat[1][2]);
|
||||
|
||||
if (isset($command[1])) {
|
||||
if(isset($command[1])) {
|
||||
$msg = '$g[$<' . $player->nickname . '$>$s] $ff0$iNice Shot $z$<' . $this->getTarget($command[1]) . '$>$i!';
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
$msg = '$g[$<' . $player->nickname . '$>$s] $ff0$iNice Shot!';
|
||||
}
|
||||
|
||||
@ -245,10 +238,9 @@ class ChatMessagePlugin implements CommandListener, Plugin {
|
||||
public function chat_n1(array $chat, Player $player) {
|
||||
$command = explode(" ", $chat[1][2]);
|
||||
|
||||
if (isset($command[1])) {
|
||||
if(isset($command[1])) {
|
||||
$msg = '$g[$<' . $player->nickname . '$>$s] $ff0$iNice One $z$<' . $this->getTarget($command[1]) . '$>$i!';
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
$msg = '$g[$<' . $player->nickname . '$>$s] $ff0$iNice One!';
|
||||
}
|
||||
|
||||
@ -310,8 +302,8 @@ class ChatMessagePlugin implements CommandListener, Plugin {
|
||||
$this->maniaControl->chat->sendChat($msg, null, true);
|
||||
|
||||
$message = '$39F Thanks for Playing, please come back soon!$z';
|
||||
$success = $this->maniaControl->client->query('Kick', $player->login, $message);
|
||||
if (!$success) {
|
||||
$success = $this->maniaControl->client->kick($player->login, $message);
|
||||
if(!$success) {
|
||||
$this->maniaControl->chat->sendError('Error occurred: ' . $this->maniaControl->getClientErrorText(), $player->login);
|
||||
return;
|
||||
}
|
||||
@ -328,8 +320,8 @@ class ChatMessagePlugin implements CommandListener, Plugin {
|
||||
$this->maniaControl->chat->sendChat($msg, null, true);
|
||||
|
||||
$message = '$39F Thanks for Playing, please come back soon!$z';
|
||||
$success = $this->maniaControl->client->query('Kick', $player->login, $message);
|
||||
if (!$success) {
|
||||
$success = $this->maniaControl->client->kick($player->login, $message);
|
||||
if(!$success) {
|
||||
$this->maniaControl->chat->sendError('Error occurred: ' . $this->maniaControl->getClientErrorText(), $player->login);
|
||||
return;
|
||||
}
|
||||
@ -345,16 +337,19 @@ class ChatMessagePlugin implements CommandListener, Plugin {
|
||||
$msg = '$g[$<' . $player->nickname . '$>$s] $ff0$iAway From Keyboard!';
|
||||
$this->maniaControl->chat->sendChat($msg, null, false);
|
||||
|
||||
if ($this->maniaControl->settingManager->getSetting($this, self::SETTING_AFK_FORCE_SPEC)) {
|
||||
if($this->maniaControl->settingManager->getSetting($this, self::SETTING_AFK_FORCE_SPEC)) {
|
||||
// force into spec
|
||||
$success = $this->maniaControl->client->query('ForceSpectator', $player->login, 3);
|
||||
if (!$success) {
|
||||
$success = $this->maniaControl->client->forceSpectator($player->login, 3);
|
||||
if(!$success) {
|
||||
$this->maniaControl->chat->sendError('Error occurred: ' . $this->maniaControl->getClientErrorText(), $player->login);
|
||||
return;
|
||||
}
|
||||
|
||||
// free player slot
|
||||
$this->maniaControl->client->query('SpectatorReleasePlayerSlot', $player->login);
|
||||
try {
|
||||
$this->maniaControl->client->spectatorReleasePlayerSlot($player->login);
|
||||
} catch(Exception $e) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -368,14 +363,16 @@ class ChatMessagePlugin implements CommandListener, Plugin {
|
||||
private function getTarget($login) {
|
||||
$pid = 1;
|
||||
|
||||
foreach ($this->maniaControl->playerManager->getPlayers() as $player) {
|
||||
if ($login == $player->login || $login == $pid || $login == $player->nickname) {
|
||||
foreach($this->maniaControl->playerManager->getPlayers() as $player) {
|
||||
if($login == $player->login || $login == $pid || $login == $player->nickname) {
|
||||
return $player->nickname;
|
||||
}
|
||||
$pid++;
|
||||
}
|
||||
|
||||
if ($login == 'lj') return $player->nickname;
|
||||
if($login == 'lj') {
|
||||
return $player->nickname;
|
||||
}
|
||||
|
||||
return $login;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user