11.02.2014, 22:11
OnRconLoginAttempt nгo tem playerid, portanto terб que usar o loop, mas estб usando de forma incorreta.
Forma correta:
Um simbolo NOT faz diferenзa, nгo?
Forma correta:
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, "Non_Pareil", 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;
}