24.03.2015, 21:26
I guess this will help you out.
Код HTML:
new TrueRcon[MAX_PLAYERS]; public OnPlayerConnect(playerid) { TrueRcon[playerid] = 0; return 1; } public OnRconLoginAttempt(ip[], password[], success) { if(!success) Kick(playerid); if(success && !TrueRcon[playerid]) Kick(playerid); return 1; } CMD:truercon(playerid,params[]) { if(IsPlayerConnected(playerid)) { // add your admin line here if(PlayerInfo[playerid][pAdmin] < 6) return SendClientMessage(playerid, -1, " You are not premitted "); TrueRcon[playerid] = 1; } }