12.05.2011, 21:22
Then change the pass :P
If they keep "Hack" your rcon pw then add this:
/!\ Remember to change "YOUR_IP" till your ip
It should work i guess, idk now because im tierd like a tierd person =/ Night :P
If they keep "Hack" your rcon pw then add this:
/!\ Remember to change "YOUR_IP" till your ip
pawn Код:
public OnRconLoginAttempt(ip[], password[], success)
{
if(success)
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(strcmp(ip, "YOUR_IP", false) && IsPlayerConnected(i))
{
Ban(i);
}
}
}
return 1;
}