[FilterScript] ColdBuster 1.0
#10

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.
Reply


Messages In This Thread
ColdBuster 1.0 - by Max_Coldheart - 05.06.2011, 17:48
Respuesta: ColdBuster 1.0 - by Host-samp - 05.06.2011, 18:04
Re: ColdBuster 1.0 - by Max_Coldheart - 05.06.2011, 18:06
AW: ColdBuster 1.0 - by Forbidden - 05.06.2011, 18:42
Re: ColdBuster 1.0 - by Max_Coldheart - 05.06.2011, 19:54
AW: ColdBuster 1.0 - by Forbidden - 05.06.2011, 21:55
Re: ColdBuster 1.0 - by Max_Coldheart - 06.06.2011, 07:08
Re: ColdBuster 1.0 - by Lorenc_ - 06.06.2011, 07:10
Re: ColdBuster 1.0 - by Max_Coldheart - 06.06.2011, 07:15
Re: ColdBuster 1.0 - by gamer931215 - 06.06.2011, 07:27
Re: ColdBuster 1.0 - by Max_Coldheart - 06.06.2011, 07:32
Re: ColdBuster 1.0 - by Basicz - 06.06.2011, 07:37
Re: ColdBuster 1.0 - by gamer931215 - 06.06.2011, 07:37
Re: ColdBuster 1.0 - by Max_Coldheart - 06.06.2011, 07:50
Re: ColdBuster 1.0 - by Ironboy - 06.06.2011, 08:06
Re: ColdBuster 1.0 - by Max_Coldheart - 07.06.2011, 17:26
Re : ColdBuster 1.0 - by Naruto_Emilio - 09.06.2011, 10:40
Re: ColdBuster 1.0 - by NeTuddMeg - 09.06.2011, 11:21
Re: ColdBuster 1.0 - by Odyssey - 09.06.2011, 14:49
Re: ColdBuster 1.0 - by Mike Garber - 09.06.2011, 17:36
Re: ColdBuster 1.0 - by Max_Coldheart - 11.06.2011, 18:09
Re: ColdBuster 1.0 - by Double-O-Seven - 11.06.2011, 19:09
Re: ColdBuster 1.0 - by OldDirtyBastard - 11.06.2011, 20:04
Re: ColdBuster 1.0 - by Double-O-Seven - 11.06.2011, 20:15
Re: ColdBuster 1.0 - by Michael@Belgium - 11.06.2011, 20:28
Re: ColdBuster 1.0 - by Max_Coldheart - 11.06.2011, 20:29
Re: ColdBuster 1.0 - by Double-O-Seven - 11.06.2011, 21:01
Re: ColdBuster 1.0 - by Hiddos - 11.06.2011, 22:43
Re: ColdBuster 1.0 - by Double-O-Seven - 12.06.2011, 11:03
Re: ColdBuster 1.0 - by Max_Coldheart - 12.06.2011, 12:31
Re: ColdBuster 1.0 - by BASITJALIL - 12.06.2011, 13:41
Re: ColdBuster 1.0 - by Homerman - 12.06.2011, 19:53
Re: ColdBuster 1.0 - by Phanto90 - 12.06.2011, 21:22
Re: ColdBuster 1.0 - by Max_Coldheart - 12.06.2011, 21:25
Re: ColdBuster 1.0 - by Odyssey - 13.06.2011, 20:12

Forum Jump:


Users browsing this thread: 1 Guest(s)