Anti ammo hack
#20

I still can't find out an effective way to get this done, I tried OnPlayerWeaponShot, OnPlayerUpdate, repeating timer, Abyss's include. I really can't find out anything working effectively, hackers are still able to increase the weapon's ammo.

This is my new code under OnPlayerWeaponShot:

PHP код:
        new slot GetWeaponSlot(weaponid);
        
gPlayerAmmo[playerid][slot]--;
        if(
GetPlayerAmmo(playerid) > && GetPlayerAmmo(playerid) > gPlayerAmmo[playerid][slot] + 15) {
            
RemovePlayerWeapon(playeridweaponid);
            
format(stringsizeof string"{FF0000}<!> {CC6699}%s has been kicked for ammo hack"GetName(playerid));
            
SendClientMessageToAll(redstring);
            return 
DelayKick(playerid);
        }
        else 
gPlayerAmmo[playerid][slot] = GetPlayerAmmo(playerid); 
My custom GivePlayerWeapon function:

PHP код:
GivePlayerWeaponEx(playeridweaponidammo) {
    new 
slot GetWeaponSlot(weaponid);
    
SetPlayerArmedWeapon(playeridweaponid);
    if(
GetWeaponSlot(GetPlayerWeapon(playerid)) == slot) {
        
gPlayerWeapon[playerid][slot] = true;
        
gPlayerAmmo[playerid][slot] += ammo;
    }
    else {
        
gPlayerWeapon[playerid][slot] = true;
        
gPlayerAmmo[playerid][slot] = ammo;
    }
    return 
GivePlayerWeapon(playeridweaponidammo);

These codes sometimes works sometimes not, mostly not.
Any idea how to make it effective enough to prevent ammo hack and false kicks?
Reply


Messages In This Thread
Anti ammo hack - by oMa37 - 23.09.2017, 16:43
Re: Anti ammo hack - by Logic_ - 23.09.2017, 17:03
Re: Anti ammo hack - by oMa37 - 23.09.2017, 17:05
Re: Anti ammo hack - by GoldenLion - 23.09.2017, 19:55
Re: Anti ammo hack - by NaS - 24.09.2017, 08:55
Re: Anti ammo hack - by oMa37 - 24.09.2017, 12:19
Re: Anti ammo hack - by Kane - 24.09.2017, 12:51
Re: Anti ammo hack - by oMa37 - 24.09.2017, 13:05
Re: Anti ammo hack - by Paulice - 24.09.2017, 14:28
Re: Anti ammo hack - by AbyssMorgan - 27.09.2017, 17:16
Re: Anti ammo hack - by oMa37 - 27.09.2017, 17:45
Re: Anti ammo hack - by AbyssMorgan - 27.09.2017, 17:48
Re: Anti ammo hack - by oMa37 - 27.09.2017, 17:54
Re: Anti ammo hack - by AbyssMorgan - 27.09.2017, 17:56
Re: Anti ammo hack - by AbyssMorgan - 27.09.2017, 18:21
Re: Anti ammo hack - by oMa37 - 27.09.2017, 18:21
Re: Anti ammo hack - by jlalt - 27.09.2017, 18:26
Re: Anti ammo hack - by oMa37 - 27.09.2017, 18:42
Re: Anti ammo hack - by GaByM - 27.09.2017, 19:09
Re: Anti ammo hack - by oMa37 - 01.10.2017, 16:11
Re: Anti ammo hack - by AbyssMorgan - 01.10.2017, 16:15
Re: Anti ammo hack - by oMa37 - 01.10.2017, 16:21
Re: Anti ammo hack - by oMa37 - 02.10.2017, 11:51
Re: Anti ammo hack - by jlalt - 02.10.2017, 17:32
Re: Anti ammo hack - by xo - 02.10.2017, 19:15
Re: Anti ammo hack - by m4karow - 02.10.2017, 19:16
Re: Anti ammo hack - by xo - 02.10.2017, 19:19
Re: Anti ammo hack - by Evocator - 02.10.2017, 19:33
Re: Anti ammo hack - by m4karow - 02.10.2017, 20:04
Re: Anti ammo hack - by oMa37 - 03.10.2017, 04:39
Re: Anti ammo hack - by ToiletDuck - 03.10.2017, 06:24
Re: Anti ammo hack - by oMa37 - 03.10.2017, 11:49

Forum Jump:


Users browsing this thread: 1 Guest(s)