Anti Cheat
#9

Quote:
Originally Posted by SAMPHacker
Посмотреть сообщение
your 100% right, that will decrease the pc memory alot try make it 2000 like he said
Will do.
EDIT: How can i make it that it bans for more weapons without creating more timers? i currently only have minigun ban.
I want it to ban Night Vision Goggles, Infared Goggles,HS Rocket

pawn Код:
forward AntiCheat(playerid);
public AntiCheat(playerid)
{
    for(new i = 0; i < MAX_PLAYERS; i++)
    {
        if(IsPlayerConnected(i))
        {
            new Weapon;
            Weapon = GetPlayerWeapon(i);
            if(Weapon == 38 && PInfo[playerid][Level] == 0)
            {
                new name[MAX_PLAYER_NAME], string[124+MAX_PLAYER_NAME];
                GetPlayerName(playerid, name, sizeof(name));
                format(string, sizeof(string), " [BOT] has Banned %s: Reason: Minigun Hacks ", name);
                SendClientMessageToAll(red, string);
                BanEx(i,"Minigun");
            }
        }
    }
}
Reply


Messages In This Thread
Anti Cheat - by Biess - 25.01.2013, 17:00
AW: Anti Cheat - by Blackazur - 25.01.2013, 17:05
Re: Anti Cheat - by Biess - 25.01.2013, 17:06
Re: Anti Cheat - by SAMPHacker - 25.01.2013, 17:13
Respuesta: Re: Anti Cheat - by RiChArD_A - 25.01.2013, 17:36
Re: Anti Cheat - by Biess - 25.01.2013, 18:23
Re: Anti Cheat - by DaRk_RaiN - 25.01.2013, 18:26
Re: Anti Cheat - by SAMPHacker - 25.01.2013, 18:48
Re: Anti Cheat - by Biess - 25.01.2013, 19:45
Re: Anti Cheat - by Biess - 26.01.2013, 06:21

Forum Jump:


Users browsing this thread: 3 Guest(s)