[Include] Southclaw's & Pottus's Anti-cheat patches
#42

Code:
public HealthCheck ()
{
    new Float:fhealth,health,ac_health;
    for(new i = 0;i < maxplayers;i++)
	{
	    if(PlayerAC[i][Alive]) //Will not be set for NPCs to skip AC Checks
	    {
	       	if(PlayerData[i][Disconnecting]) continue;
		    GetPlayerHealth(i,fhealth);
		    health = floatround(fhealth);
		    ac_health = floatround(PlayerAC[i][ACHealth]);
		   	if(PlayerAC[i][ACHealthSync])
		    {
		        //SYNC
		        if(health > 100)
		        {
		            if(!PlayerAC[i][GodMode])
		            {
                  		XA_Ban(i,"Health Hacks","Banned for using Health Hacks/Cheats",SERVER);
		            }
		        }
		        else if(health != ac_health)
			 	{
		      		if(!PlayerAC[i][HHNoticeGiven])
		         	{
		          		PlayerAC[i][HHNoticeGiven] = true;
	              		SendAdminNoticeMessage("%s(%d) is suspected to be using health hacks.",PlayerData[i][Name],i);
					}
		            SetPlayerHealth(i,ac_health);
		            PlayerAC[i][ACHealthSync] = false;
					if(++PlayerAC[i][HealthHackCount] > MAX_HEALTH_HACK_COUNT)
					{
         				XA_Ban(i,"Health Hacks","Banned for using Health Hacks/Cheats",SERVER);
					}
		        }
	    	}
		    else
		    {
		        //CHECK DESYNC
		        if(health!=ac_health)
				{
				   	//DESYNCED
				    new sec  = (++PlayerAC[i][ACHealthDesyncTime] / (1000/AC_HEALTH_CHECK_TIME));
				    if(sec > TIME_FOR_DESYNC_KICK)
					{
					   TimePlayer(i);
					   continue;
					}
					if(sec == (TIME_FOR_DESYNC_KICK>>2))
					{
					    SetPlayerHealth(i,ac_health);
					    PlayerAC[i][ACHealthSync] = false;
					    SendAdminNoticeMessage("PlayerDesync:%s(%d) - Health is desynced - %d seconds since desync",PlayerData[i][Name],i,(TIME_FOR_DESYNC_KICK/4));
						continue;
					}
					if(sec == (TIME_FOR_DESYNC_KICK>>1))
					{
	    				SetPlayerHealth(i,ac_health);
	    				PlayerAC[i][ACHealthSync] = false;
					    SendAdminNoticeMessage("PlayerDesync:%s(%d) - Health is desynced - %d seconds since desync",PlayerData[i][Name],i,(TIME_FOR_DESYNC_KICK/2));
						continue;
					}
				}
				else
				{
				    PlayerAC[i][ACHealthDesyncTime]  = PlayerAC[i][HealthHackCount] = 0;
				    PlayerAC[i][ACHealthSync] = true;
				}
	   		}
		}
	}
}
Concept/Idea for getting players in sync before banning them

All the health changes are server sided.

This code is from my server from 2013 so it may be outdated.
Reply


Messages In This Thread
Southclaw's & Pottus's Anti-cheat patches - by Pottus - 02.04.2014, 23:54
Re: Southclaw's & Pottus's Anti-cheat patches - by RenovanZ - 03.04.2014, 01:36
Re: Southclaw's & Pottus's Anti-cheat patches - by Whitetiger - 03.04.2014, 01:42
Re: Southclaw's & Pottus's Anti-cheat patches - by Pottus - 03.04.2014, 01:57
Re: Southclaw's & Pottus's Anti-cheat patches - by awsomedude - 03.04.2014, 03:50
Re: Southclaw's & Pottus's Anti-cheat patches - by Niko_boy - 03.04.2014, 03:54
Re: Southclaw's & Pottus's Anti-cheat patches - by Lorenc_ - 03.04.2014, 06:07
Re: Southclaw's & Pottus's Anti-cheat patches - by iZN - 03.04.2014, 08:12
Re: Southclaw's & Pottus's Anti-cheat patches - by Kar - 03.04.2014, 12:36
Re: Southclaw's & Pottus's Anti-cheat patches - by Pottus - 03.04.2014, 13:03
Re: Southclaw's & Pottus's Anti-cheat patches - by shittt - 03.04.2014, 13:15
Respuesta: Southclaw's & Pottus's Anti-cheat patches - by MugiwaraNoLuffy - 05.04.2014, 05:51
Re: Southclaw's & Pottus's Anti-cheat patches - by Kyle - 08.04.2014, 09:51
Re: Southclaw's & Pottus's Anti-cheat patches - by Admigo - 08.04.2014, 14:08
Re: Southclaw's & Pottus's Anti-cheat patches - by Kyra - 08.04.2014, 20:12
Re: Southclaw's & Pottus's Anti-cheat patches - by Pottus - 09.04.2014, 00:31
Respuesta: Re: Southclaw's & Pottus's Anti-cheat patches - by MugiwaraNoLuffy - 09.04.2014, 03:41
Re: Southclaw's & Pottus's Anti-cheat patches - by kristo - 13.04.2014, 13:18
Re: Southclaw's & Pottus's Anti-cheat patches - by Pottus - 13.04.2014, 13:22
Re: Southclaw's & Pottus's Anti-cheat patches - by SkittlesAreFalling - 14.04.2014, 03:46
Re: Southclaw's & Pottus's Anti-cheat patches - by iRaiDeN - 14.04.2014, 08:22
Re: Southclaw's & Pottus's Anti-cheat patches - by Kyra - 14.04.2014, 21:04
Re: Southclaw's & Pottus's Anti-cheat patches - by NoahF - 20.04.2014, 11:27
Re: Southclaw's & Pottus's Anti-cheat patches - by Kyra - 11.05.2014, 17:52
Re: Southclaw's & Pottus's Anti-cheat patches - by Pottus - 15.05.2014, 12:28
Re: Southclaw's & Pottus's Anti-cheat patches - by Admigo - 15.05.2014, 14:53
Re: Southclaw's & Pottus's Anti-cheat patches - by Kyra - 17.05.2014, 20:32
Re: Southclaw's & Pottus's Anti-cheat patches - by Chrillzen - 04.10.2014, 12:22
Re: Southclaw's & Pottus's Anti-cheat patches - by Chefгo - 28.10.2014, 14:03
Re: Southclaw's & Pottus's Anti-cheat patches - by Alex Magaсa - 28.10.2014, 15:48
Re: Southclaw's & Pottus's Anti-cheat patches - by Chefгo - 28.10.2014, 16:41
Re: Southclaw's & Pottus's Anti-cheat patches - by Pottus - 01.11.2014, 05:25
Re: Southclaw's & Pottus's Anti-cheat patches - by Pottus - 02.11.2014, 01:15
Re: Southclaw's & Pottus's Anti-cheat patches - by Killa[DGZ] - 02.11.2014, 01:24
Re: Southclaw's & Pottus's Anti-cheat patches - by Killa[DGZ] - 02.11.2014, 01:33
Re: Southclaw's & Pottus's Anti-cheat patches - by Pottus - 02.11.2014, 01:35
Re: Southclaw's & Pottus's Anti-cheat patches - by Killa[DGZ] - 02.11.2014, 01:39
Re: Southclaw's & Pottus's Anti-cheat patches - by Killa[DGZ] - 02.11.2014, 02:28
Re: Southclaw's & Pottus's Anti-cheat patches - by Jakwob - 18.11.2014, 19:51
Re: Southclaw's & Pottus's Anti-cheat patches - by PaulDinam - 15.01.2015, 13:16
Re: Southclaw's & Pottus's Anti-cheat patches - by HydraHumza - 01.03.2015, 03:53
Re: Southclaw's & Pottus's Anti-cheat patches - by Yashas - 02.05.2015, 15:02
Re: Southclaw's & Pottus's Anti-cheat patches - by Pottus - 02.05.2015, 15:05
Re: Southclaw's & Pottus's Anti-cheat patches - by GameR16 - 01.06.2015, 14:51
Re: Southclaw's & Pottus's Anti-cheat patches - by anime107 - 15.07.2015, 21:55
Re: Southclaw's & Pottus's Anti-cheat patches - by Yashas - 05.10.2015, 09:37
Re: Southclaw's & Pottus's Anti-cheat patches - by qilia - 07.10.2015, 23:43
Re: Southclaw's & Pottus's Anti-cheat patches - by thaKing - 08.10.2015, 04:28
Re: Southclaw's & Pottus's Anti-cheat patches - by T-N-Z - 21.11.2015, 20:27
Re: Southclaw's & Pottus's Anti-cheat patches - by Yashas - 22.11.2015, 11:38
Re: Southclaw's & Pottus's Anti-cheat patches - by Mister0 - 22.08.2016, 22:16
Re: Southclaw's & Pottus's Anti-cheat patches - by Abagail - 22.08.2016, 23:27
Re: Southclaw's & Pottus's Anti-cheat patches - by PT - 14.01.2017, 19:48

Forum Jump:


Users browsing this thread: 14 Guest(s)