22.01.2017, 15:29
Minha Proteзгo deve te ajuda!
PHP код:
public OnRconLoginAttempt(ip[], password[], success)
{
if(success)
{
for(new x = 0, y = GetMaxPlayers(); x != y; x++)
{
new IP[16];
GetPlayerIp(x, IP, 16);
if(strcmp(ip, IP)) continue;
new NickName[MAX_PLAYER_NAME];
GetPlayerName(x, NickName, MAX_PLAYER_NAME);
if(!strcmp(NickName, "SEU_NICK_IN-GAME", true)) // Autorize apenas seu NICK na RCON do Servidor, Caso vocк seja o unico a ter acesso a Rcon do servidor.
{
SCM(x, 0x00FF00FF, "Vocк estб autorizado a logar na RCON.");
}
else
{
SCM(x, COR_ERRO, "Vocк nгo estб autorizado a logar na RCON.");
Kick(x);
}
}
}
return 1;
}