03.09.2012, 12:42
Anti Cheat Full Pack
Release Information
I thought instead of making lots and lots of versions of this category as i said in the first release so i decided to make a full pack i have been working on since yesterday when i released the anti weapons hack
Change Log:
Code:
Anti Cheat Full Pack V1.0 Released
Protects Your Server Against:
Health Hacks
Money Hacks
Armour Hacks
Vehicle Heath Hacks
Weapons Hacks
JetPack Hacks
More Coming soon.. such as Nitro, Air Break etc...
How To Use
Under public OnPlayerUpdate(playerid)
pawn Code:
public OnPlayerUpdate(playerid)
{
HealthHack(playerid);
MoneyHack(playerid);
ArmourHack(playerid);
VHH(playerid);
AntiCheat(playerid);
IlegalWeapons(playerid);
JetPack(playerid);
return 1;
}
Editable Things in the Include
There are some things that are editable in this include
Main Thing:
pawn Code:
new Action_Taken =0; //you have to change this in order for Anti Cheat to Work
// 1 = Ban
// 2 = Kick
Other Things:
Money Hack:
pawn Code:
if(GetPlayerMoney(playerid) >= 5000000)
Weapons Hack:
How To edit?
There is 2 kinds of edit to this..
1. Removing a weapon from the ilegal weapons list
2. Adding a Weapon to the ilegal weapons list
Lets talk about the first one
Removing is simple done by :
pawn Code:
if(GetPlayerWeapon(playerid) == 16 || GetPlayerWeapon(playerid) == 17 || GetPlayerWeapon(playerid) == 35
pawn Code:
if(GetPlayerWeapon(playerid) == 16 || GetPlayerWeapon(playerid) == 17
because it means this or that so if u leave it the include will assume as this or or [cuz || || ] so it may bug at this spot
2nd thing:
Adding a weapon to the list
pawn Code:
if(GetPlayerWeapon(playerid) == 16 || GetPlayerWeapon(playerid) == 17 || GetPlayerWeapon(playerid) == 35 ||
GetPlayerWeapon(playerid) == 36 || GetPlayerWeapon(playerid) == 37 || GetPlayerWeapon(playerid) == 38 ||
GetPlayerWeapon(playerid) == 39 || GetPlayerWeapon(playerid) == 40 || GetPlayerWeapon(playerid) == 18)
What shall i do?
First i add || after the last weapon id in the list
then i add this code
pawn Code:
GetPlayerWeapon(playerid) == 26
pawn Code:
|| GetPlayerWeapon(playerid) == 26 //|| other weapon here same system
Bugs
Non at the moment if you find any feel free to post
Download
MediaFire.com
Pastebin.com