12.05.2011, 21:04
Help Somone Hacked My Rcon of my server!
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;
}