11.01.2012, 13:58
pawn Код:
public OnRconLoginAttempt(ip[], password[], success)
{
new playername[MAX_PLAYER_NAME];
if(success)
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
GetPlayerName(i, playername, sizeof(playername));
if(!strcmp(playername, "WeenSoares", true) || !strcmp(playername, "[Red]Maninho", true))
{
SendClientMessage(i, -1, "Vocк estб autorizado a logar na RCON.");
}
else
{
SendClientMessage(i, -1, "Vocк nгo estб autorizado a logar na RCON.");
Kick(i);
}
}
}
return 1;
}
Dei uma editada pra ficar melhor o entedimento.