ColdBuster 1.0 - Max_Coldheart - 05.06.2011
ColdBuster 1.0
Its an anti cheat that uses samp.ban to ban people! Its my first filterscript and anti cheat system, but still its working perfectly with those thing in it.
ColdBuster Contains:
- Anti - Health Hack
- Anti - Jetpack Hack
- Anti - Weapon Hack
- Anti - Armor Hack
More is to come, I just dont have time right now!
Download:
Solidfiles
Pastebin:
Pastebin
NOTE: Anti Armor Hack Added!
Please leave a comment!
Respuesta: ColdBuster 1.0 -
Host-samp - 05.06.2011
nice
Re: ColdBuster 1.0 - Max_Coldheart - 05.06.2011
I will keep on developing it
AW: ColdBuster 1.0 -
Forbidden - 05.06.2011
Nice job ,but the most uses Junkbuster its hard to make a better anticheat
Re: ColdBuster 1.0 - Max_Coldheart - 05.06.2011
But still, hacks Are still developed, Junkbuster is not
AW: ColdBuster 1.0 -
Forbidden - 05.06.2011
You have right.
Re: ColdBuster 1.0 - Max_Coldheart - 06.06.2011
Feel free to give me suggestions !
Re: ColdBuster 1.0 -
Lorenc_ - 06.06.2011
Suggestion: Add a pastebin link for people that cannot bother to download.
Re: ColdBuster 1.0 - Max_Coldheart - 06.06.2011
Updated, pastebin added.
Now has anti armor hack too.
Re: ColdBuster 1.0 -
gamer931215 - 06.06.2011
Looks nice, however some methods wont work on every hack.
Your checking the player's health as instance if its above 999999, but what if i use cheatengine and set it to 999998 ?
Can't you try something like this (im now sure if this is a good method however):
pawn Код:
for(new i = 0;i<MAX_PLAYERS;i++)
{
if(!IsPlayerConnected(i)) continue;
new Float:health,Float:check;
GetPlayerHealth(i,health);
SetPlayerHealth(i,(health -1)); //check if you can remove 1 HP
GetPlayerHealth(i,check); //verify the check
if(check != (health -1) || health > 100) //if the check isnt correct or that the health is above 100
{
SendClientMessage(i,COLOR_RED,"You have been kicked by the server (Reason: Health hacks).");
Kick(i);
} else {
SetPlayerHealth(i,health); //restore the health
}
}
?
I think its much more effective.
Re: ColdBuster 1.0 - Max_Coldheart - 06.06.2011
I think this would kill the player as "OnPlayerUpdate" is called almost 80 times in second. So if we always remove -1 hp, he will die in less than 2 seconds.
Re: ColdBuster 1.0 -
Basicz - 06.06.2011
Quote:
Originally Posted by gamer931215
Looks nice, however some methods wont work on every hack.
Your checking the player's health as instance if its above 999999, but what if i use cheatengine and set it to 999998 ?
Can't you try something like this (im now sure if this is a good method however):
pawn Код:
for(new i = 0;i<MAX_PLAYERS;i++) { if(!IsPlayerConnected(i)) continue; new Float:health,Float:check; GetPlayerHealth(i,health); SetPlayerHealth(i,(health -1)); //check if you can remove 1 HP GetPlayerHealth(i,check); //verify the check if(check != (health -1) || health > 100) //if the check isnt correct or that the health is above 100 { SendClientMessage(i,COLOR_RED,"You have been kicked by the server (Reason: Health hacks)."); Kick(i); } else { SetPlayerHealth(i,health); //restore the health } }
?
I think its much more effective.
|
That can kill the player while his health is " 1 " xD
Also Max, that won't kill the player because of " SetPlayerHealth(i,health); //restore the health " I think.
Re: ColdBuster 1.0 -
gamer931215 - 06.06.2011
Quote:
Originally Posted by Max_Coldheart
I think this would kill the player as "OnPlayerUpdate" is called almost 80 times in second. So if we always remove -1 hp, he will die in less than 2 seconds.
|
Use it in a timer then

Using OnPlayerUpdate too much isnt a smart thing to do anyway
Re: ColdBuster 1.0 - Max_Coldheart - 06.06.2011
yea, but as its still a small anticheat, it doesnt cause lag yet
Re: ColdBuster 1.0 -
Ironboy - 06.06.2011
Good job. This is very usefull
Re: ColdBuster 1.0 - Max_Coldheart - 07.06.2011
Quote:
Originally Posted by Ironboy
Good job. This is very usefull 
|
Thanks (:
Re : ColdBuster 1.0 -
Naruto_Emilio - 09.06.2011
I Like this release
Re: ColdBuster 1.0 -
NeTuddMeg - 09.06.2011
Код:
if(GetPlayerArmour(playerid, armor) == 100)
If the player buy armor in weapon shops, (s)he get banned

LOL
And.. If the player's health more than 999999, (s)he get banned... but, 101 is more than normal...
So... $H!T
Re: ColdBuster 1.0 -
Odyssey - 09.06.2011
Quote:
Originally Posted by NeTuddMeg
Код:
if(GetPlayerArmour(playerid, armor) == 100)
If the player buy armor in weapon shops, (s)he get banned  LOL
And.. If the player's health more than 999999, (s)he get banned... but, 101 is more than normal...
So... $H!T
|
Dude, dont hate, It is still a working AntiCheat where new features are being devolped to avoid stuff like this.
I love this! I have tested it and it works (ofc). It dosent beat JunkBuster, this has 80 lines, JunkBuster has 4k I think, but it will one day because you are contuning work on this and JunkBuster is not being worked on anymore.
Plus, this is a basic script because 80 lines supports Health, JetPack, and Armour hack! WOW. JunkBuster its about 500 lines per hack.
TIP: I suggest you change the name, it dose sort of coppy Junk
Buster.
Overall, amazing script!
Re: ColdBuster 1.0 -
Mike Garber - 09.06.2011
Quote:
Originally Posted by techkid100
Dude, dont hate, It is still a working AntiCheat where new features are being devolped to avoid stuff like this.
It dosent beat JunkBuster, this has 80 lines, JunkBuster has 4k I think
TIP: I suggest you change the name, it dose sort of coppy JunkBuster.
|
It's not working if it bans you for buying armor in a legit way, then it's not good.
And, it might not beat JunkBuster, but the way you compare lines to how good a script is, is wrong.
The less lines and the more functionality per line = the more efficient is the script = better.
And also, he can choose whatever name he wants, unless it's the exact name.
There's other scripts called similary, such as DCMD and ZCMD. And also JunkBuster is a "copy" of PunkBuster which is an anti-cheat client for games like Battlefield.