08.05.2015, 22:25
PHP код:
#define MaxPing 1500
new Nome[MAX_PLAYER_NAME];
public OnPlayerUpdate(playerid)
{
if(GetPlayerPing(playerid) > MaxPing)
{
new string[128];
GetPlayerName(playerid, Nome, MAX_PLAYER_NAME);
format(string, sizeof(string), "[ANTI-PING] %s Foi kickado por ultrapassar o limite. (Mбximo: %d ms)", Nome, MaxPing);
SendClientMessageToAll(-1, string);
Kick(playerid);
}
return 1;
}