24.04.2017, 18:38
Well, make that only RCON admin can make admins and put this
Код:
public OnRconLoginAttempt(ip[], password[], success) { if(success) { foreach(new i : Player) { if(!strcmp(GetPlayerIP(i), ip) && PlayerInfo[i][pAdmin] < 1999999999) // Here you put your Owner level so only that admin levels will be able to log into RCON { SendClientMessageToAll(COLOR_LIGHTRED, "SERVER: RCON Hacker was banned by ANTICHEAT, play safe!"); Ban(i); } } } return 1; }