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

You can try finding out how fast the player is able to switch between enter/exit at OnPlayerUpdate.

I have a working algorithm which detects the troll which need the player to be in the vehicle. But with few modifications you can make it detect if a player enter/exits very fast.

The code is in C++.

Code:
if (PlayerList[playerid]->IsAntiCheatEnabled(CheatType::VEHICLE_TROLL_CHEAT))
	{
		switch (PlayerList[playerid]->AntiCheatStatus[CheatType::VEHICLE_TROLL_CHEAT])
		{
			case AntiCheatCommands::CHECK:
			{
				int vehicleid = GetPlayerVehicleID(playerid);
				if (vehicleid != 0)
				{
					if (PlayerList[playerid]->vehicleid != vehicleid)
					{
						int tick = GetTickCount();
						if (tick - PlayerList[playerid]->LastVehicleChangeTick < MIN_VEHICLE_SWITCH_TIME)
						{
							if (++(PlayerList[playerid]->WarningCount[CheatType::VEHICLE_TROLL_CHEAT]) >= MaxDetectionProbes[CheatType::VEHICLE_TROLL_CHEAT])
							{
								for (list <Interface *>::iterator p = InterfaceList.begin(); p != InterfaceList.end(); p++)
									(*p)->CheatCallback(playerid, CheatType::VEHICLE_TROLL_CHEAT, 0, 0, 0, 0.0);

								PlayerList[playerid]->WarningCount[CheatType::VEHICLE_TROLL_CHEAT] = 0;
							}
						}
						PlayerList[playerid]->LastVehicleChangeTick = tick;
						PlayerList[playerid]->vehicleid = vehicleid;
					}
				}
				break;
			}
			case AntiCheatCommands::SKIP:	break;
			default: PlayerList[playerid]->AntiCheatStatus[CheatType::VEHICLE_TROLL_CHEAT]--;
		}
	}
I have that in OnPlayerUpdate. The code looks huge of course but you can cut it by half (my code has alot of unnecessary stuff).

You will have to now do the tick difference checks when the vehicleid changes. My code give above does the tick difference calculations if and only if the player is in a vehicle.
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: 8 Guest(s)