24.03.2014, 09:10
And this is my rcon login attempt whenever i enter the command /rcon login (password) it closes the connection
Код:
public OnRconLoginAttempt(ip[], password[], success) {
new plip[MAX_PLAYER_IP], playerid;
foreach(Player, i) {
GetPlayerIp(i, plip, sizeof(plip));
if(strcmp(plip, ip) == 0) {
playerid = i;
}
}
if(success) {
if(PlayerInfo[playerid][pAdmin] < 99998) Kick(playerid);
} else {
if(RconAttempts[playerid] < 3) RconAttempts[playerid]++;
else Kick(playerid);
}
return 1;
}

