SA-MP Forums Archive
JunkBuster Cheat Detected - 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: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: JunkBuster Cheat Detected (/showthread.php?tid=459344)



JunkBuster Cheat Detected - Belajac - 22.08.2013

If you have problem with "JunkBuster Cheat Detected" replace this:
Код:
if (JB::Variables [CHECK_WALK_ANIMS] && GetPlayerWeapon (i) != 46 && JB::PlayerInfo [i][JB::pCurrentState] == PLAYER_STATE_ONFOOT && !JB::PlayerPedAnims && GetPlayerSkin (i) != 0 && GetPlayerAnimationIndex (i) == 1231)
			    {
			        JB::Ban (i, "Cheats detected");
			        continue;
			    }
with this:
Код:
if (JB::Variables [CHECK_WALK_ANIMS] && GetPlayerWeapon (i) != 46 && GetPlayerWeapon (i) != 0 && JB::PlayerInfo [i][JB::pCurrentState] == PLAYER_STATE_ONFOOT && !JB::PlayerPedAnims && GetPlayerSkin (i) != 0 && GetPlayerAnimationIndex (i) == 1231)
			    {
			        JB::Ban (i, "Cheats detected");
			        continue;
			    }