Help with bot attack
#6

try using anti bot script
http://pastebin.com/UXznpXwx


or make below script if you don't have any npc's

pawn Код:
public OnPlayerConnect(playerid)
{
    if(IsPlayerNPC(playerid)) {
        new server_IP[16];
        format(server_IP, 16, "127.0.0.1");

        if(strcmp(ConnIP,server_IP,true) != 0) {
            Ban(playerid); // Ban is the safest thing here, as if you kick, they can still flood you with endless connections
            return 0;
        }
    }
    return 1;
}
Reply


Messages In This Thread
Help with bot attack - by tal_peretz - 13.04.2012, 19:49
Re: Help with bot attack - by CrazyChoco - 13.04.2012, 19:51
Re: Help with bot attack - by ViniBorn - 13.04.2012, 19:52
Re: Help with bot attack - by tal_peretz - 13.04.2012, 21:00
Re: Help with bot attack - by tal_peretz - 13.04.2012, 23:17
Re: Help with bot attack - by Neo Karls - 14.04.2012, 01:50
Re: Help with bot attack - by @Riichard - 14.04.2012, 01:54
Re: Help with bot attack - by Kitten - 14.04.2012, 01:56
Re: Help with bot attack - by tal_peretz - 14.04.2012, 02:11

Forum Jump:


Users browsing this thread: 1 Guest(s)