22.06.2013, 18:13
Quote:
Vocк usa algum sistema de mбximo de Ping? Porque algumas pessoas usam e alguns sгo bugados.
|
pawn Код:
#define pingmaximo 1500
public kickping(playerid)
{
new nome[MAX_PLAYER_NAME];
new string[128];
new ping = GetPlayerPing(playerid);
GetPlayerName(playerid,nome,sizeof(nome));
if(ping >= pingmaximo)
{
format(string,sizeof(string),"AdmCmd: %s[ID %d] estб com o Ping muito alto ( %d / %d )",nome, playerid,ping,pingmaximo);
ABroadCast(COLOR_YELLOW2,string,1);
}
return 1;
}