another bot attack
#1

hi guys can anyone make me simple filter script some cunt keeps flooding server with bots ladadmin dont do shit the anti bot system on it
here is screen shot of rcon wen got flooded


Reply
#2

Make a check at OnPlayerConnect for 255.255.255.255 ip so if someone has that ip, he'll get kicked.
Reply
#3

wot do i pop it in gm ?
Reply
#4

pawn Код:
stock PlayerIp(playerid)
{
new ip[16];
GetPlayerIp(playerid, ip, sizeof(ip));
return ip;
}

public OnPlayerConnect(playerid)
{
if(strcmp(PlayerIp(playerid), "255.255.255.255") == 0) Kick(playerid);
return 1;
}
Reply
#5

like a range kick
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)