SA-MP Forums Archive
[FilterScript] Anti Cheat System - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Filterscripts (https://sampforum.blast.hk/forumdisplay.php?fid=17)
+--- Thread: [FilterScript] Anti Cheat System (/showthread.php?tid=411822)



Anti Cheat System - FiReMaNStone - 30.01.2013

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


Re: Anti Cheat System - S4ba - 30.01.2013

why u cant give us more informations ? :P


Re: Anti Cheat System - FiReMaNStone - 30.01.2013

I don't know why


AW: Anti Cheat System - Blackazur - 30.01.2013

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


Re: Anti Cheat System - FiReMaNStone - 30.01.2013

There is no virus


AW: Anti Cheat System - Blackazur - 30.01.2013

There is just Anti Money and Weapon Hack. ^^


Re: Anti Cheat System - FiReMaNStone - 30.01.2013

Yes did you download


Re: Anti Cheat System - N0FeaR - 17.03.2013

More info please.


Re: Anti Cheat System - Killa[DGZ] - 17.03.2013

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


Re: Anti Cheat System - Djole1337 - 17.03.2013

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);
}
......