Auto minigun and Rocket launcher ban
#3

Quote:
Originally Posted by Alex_Valde
Посмотреть сообщение
You can try using this
He said instantly banned so this should do the trick:

pawn Код:
#include <a_samp>

//AntiCheat
new timer1;

public OnGameModeInit()
{
    timer1 = SetTimer("AntiCheat",5000,true);
    return 1;
}

forward AntiCheat();
public AntiCheat()
{
    new weap, ammo;
    for(new i = 0; i < MAX_PLAYERS; i++)
    {
        if(IsPlayerConnected(i))
        {
            GetPlayerWeaponData(i, 7, weap, ammo);
            if(weap == 38)
            {
                new string [128];
                new pName[MAX_PLAYER_NAME];
                GetPlayerName(i, pName, sizeof(pName));
                format(string, sizeof(string), "BANNED: %s has been auto banned by console. (Reason: Minigun Cheat)", pName);
                SendClientMessageToAll(0xFF0000FF, string);
                BanEx(i, "AntiCheat - Minigun");
                break;
            }
            GetPlayerWeaponData(i, 7, weap, ammo);
            if(weap == 35)
            {
                new string [128];
                new pName[MAX_PLAYER_NAME];
                GetPlayerName(i, pName, sizeof(pName));
                format(string, sizeof(string), "BANNED: %s has been auto banned by console. (Reason: Rocket launcher Cheat)", pName);
                SendClientMessageToAll(0xFF0000FF, string);
                BanEx(i, "AntiCheat - Rocket Launcher");
                break;
            }
        }
    }
    return 1;
}

public OnGameModeExit()
{
    KillTimer(timer1);
    return 1;
}
Reply


Messages In This Thread
Auto minigun and Rocket launcher ban - by Face9000 - 07.11.2010, 13:34
Re: Auto minigun and Rocket launcher ban - by Alex_Valde - 07.11.2010, 13:43
Re: Auto minigun and Rocket launcher ban - by BP13 - 07.11.2010, 13:43
Re: Auto minigun and Rocket launcher ban - by Face9000 - 07.11.2010, 13:46
Re: Auto minigun and Rocket launcher ban - by Face9000 - 07.11.2010, 14:05
Re: Auto minigun and Rocket launcher ban - by gr56 - 07.11.2010, 15:48
Re: Auto minigun and Rocket launcher ban - by Face9000 - 07.11.2010, 17:02
Re: Auto minigun and Rocket launcher ban - by The_Moddler - 07.11.2010, 17:05
Re: Auto minigun and Rocket launcher ban - by BP13 - 07.11.2010, 17:54
Re: Auto minigun and Rocket launcher ban - by The_Moddler - 07.11.2010, 21:18

Forum Jump:


Users browsing this thread: 5 Guest(s)