08.02.2011, 19:29
pessoal tem como bloquear os comandos da rcon tipo tirar o /rcon login e todos os cmds que tem nйla
vlw
vlw
if(strcmp("/rcon", cmdtext, true) == 0)
{
Kick(playerid);
return 1;
}
public OnRconLoginAttempt(ip[], password[], success)
{
for(new a = 0, b = GetMaxPlayers() ; a <= b ; ++ a) if(!success) Kick(a);
for(new c = 0, d = GetMaxPlayers() ; c <= d ; ++ c) if(success) Kick(c);
return 1;
}