[FilterScript] Anti Cheat System
#1

Hello Guys i am gonna show that this is Anti cheat System
and i cant give more information in this sorry i am really really sorry

Credits

FiReMaNStone-scripting

SAMP-<a_samp>include

Download Link

http://www.mediafire.com/?2n4e1tz00wdd39r
Reply
#2

why u cant give us more informations ? :P
Reply
#3

I don't know why
Reply
#4

You should give us more Information about it, or think you anyone will download it, maybe it is a Virus or something like that.
Reply
#5

There is no virus
Reply
#6

There is just Anti Money and Weapon Hack. ^^
Reply
#7

Yes did you download
Reply
#8

More info please.
Reply
#9

Please pastebin the source and add more information about your script such as.. what it is and what it does, thank you..
Reply
#10

Quote:
pawn Code:
#include <a_samp>

#define COLOR_RED 0xFF0000AA

new pMoney[MAX_PLAYERS];
new ForbiddenWeapons[][] = {
38,
35,
36
};

public OnPlayerConnect(playerid)
{
    pMoney[playerid] = 0;
    return 1;
}
public OnPlayerDisconnect(playerid, reason)
{
    pMoney[playerid] = 0;
    return 1;
}
public OnPlayerUpdate(playerid)
{
    new pName[MAX_PLAYER_NAME],
        w = 0,
        string[128];
    if(GetPlayerMoney(playerid) > pMoney[playerid]){
        GetPlayerName(playerid, pName, MAX_PLAYER_NAME);
        format(string, sizeof(string), "* %s has been banned: MONEY CHEAT", pName);
        SendClientMessageToAll(COLOR_RED, string);
        BanEx(playerid, "Money Cheat");
    }
    while(w < (sizeof(ForbiddenWeapons))){
        if(GetPlayerWeapon(playerid) == w){
            GetPlayerName(playerid, pName, MAX_PLAYER_NAME);
            format(string, sizeof(string), "* %s has been banned: WEAPON CHEAT", pName);
            SendClientMessageToAll(COLOR_RED, string);
            BanEx(playerid, "Weapon Cheat");
        }
    }
    return 1;
}

stock a_GivePlayerMoney(playerid, money)
{
    pMoney[playerid] += money;
    GivePlayerMoney(playerid, money);
}
stock a_SetPlayerMoney(playerid, money)
{
    pMoney[playerid] = money;
    ResetPlayerMoney(playerid);
    GivePlayerMoney(playerid, money);
}
......
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)