OutdatedAIO 1.7.2

Posts 115 of 96 · Page 1 of 7
AIO 1.7.2
DETECTED you will get ban after 2-4 games and have to create new account

Showcase


F7 - aim, F8 - chams, F9 - esp

More info from is in last thread https://www.mpgh.net/forum/showthread.php?t=1309109

Changes
  1. Tweaked aimbot
  2. Few tweaks that can decrease detection


VT
https://www.virustotal.com/#/file-an...UwODMzODAzMw==
https://virusscan.jotti.org/en-US/fi...job/bcyoq4uzak

Source I am using (in case you want to tweak it or smth)

Almost ready to CP. Just call MoveMouse. I am running 1000 Hz mouse 2000 dpi, no accel in fortnite (ini) and no accel in windows, 0.16 sensivity (0.04 in ini)

target_tracking_time - time since last target change.
divider2 is 8..1 depends on time. We start slow and ramping up to target. 0 ms = 8, 1000+ ms = 1
divider2 is 1..2 helps with twitching (going back and forth)

Code:
	// anti clockwise angle between 2 vectors v1 and v2
	float CalculateAngle(SDK::FVector2D v1, SDK::FVector2D v2)
	{
		float dot = v1.X * v2.X + v1.Y * v2.Y;
		float det = v1.X * v2.Y - v1.Y * v2.X;
		return atan2(det, dot) * 180.0f / M_PI;
	}

	SDK::FVector2D last_move = {0 , 0};
	void MoveMouse(float moveX, float moveY, float target_tracking_time)
	{
		target_tracking_time = min(target_tracking_time, 1.0f);
		float divider1 = 0.5f + (8.0f - 0.5f) / (1.0f + pow(target_tracking_time / 0.232f, 1.81f)); // 0.0 - 8, 0.25 - 4, 0.5 - 2, 1 - 1

		// dont move mouse more than 50 pixels at time (ghetto HFR)
		float dirX = moveX > 0 ? 1.0f : -1.0f;
		float dirY = moveY > 0 ? 1.0f : -1.0f;
		moveX = dirX * min(50, abs(moveX));
		moveY = dirY * min(50, abs(moveY));
		SDK::FVector2D cur_move = { moveX , moveY };

		float angle = CalculateAngle(cur_move, last_move); // -180..180 angle ->
		float divider2 = max(abs(angle), 90) / 90.0f; // -> 1..2 additional divider depending on last mouse movement
		moveX = moveX / divider1 / divider2;
		moveY = moveY / divider1 / divider2;

		mouse_event(MOUSEEVENTF_MOVE, (DWORD)moveX, (DWORD)moveY, 0, 0);
		last_move = cur_move;
	}
C:\Users\XXX\AppData\Local\Fort******me\Saved\Conf ig\WindowsClient\GameUserSettings.ini + readonly
Code:
bEnableMouseSmoothing=True
MouseSensitivity=0.04
bDisableMouseAcceleration=True
DETECTED you will get ban after 2-4 games and have to create new account
d3d13_v3_mpgh.net.zip158 KB · 1,728 downloads 4/62 malicious
And use it smart aka dont aim invisible enemies, shoot at 200m with AR (yes you can kill at this range with aimbot). There maybe new server checks
Can't wait haha, looking forward to test it out.
CP about new anticheat 1.7.2

the most recent update broke a lot of cheats and I am happy to say that FortHook (now V4) is working again.

A lot of people complained about getting kicked with the error that they are using a VPN, a Machine(wtf) or Cheating.
If you get this error your account is flagged and banned.

I had this error and tried using nothing (not even VPN) and still got kicked.


I made a new account and tried 4 different things:
- Nothing Injected, no Bypass and no VPN -> No kick/ban
- Just VPN (trust.zone) -> No kick/ban
- VPN and Bypass (NoEye Hotpatch Injector) -> No kick/ban
- VPN, Bypass and FortHook (V4) -> No kick/ban

With the old account I would get kicked in any of the above listed cases.

If you do get kicked or banned, please list what of the above you were doing.
Quote Originally Posted by dlr5668 View Post
CP about new anticheat 1.7.2

the most recent update broke a lot of cheats and I am happy to say that FortHook (now V4) is working again.

A lot of people complained about getting kicked with the error that they are using a VPN, a Machine(wtf) or Cheating.
If you get this error your account is flagged and banned.

I had this error and tried using nothing (not even VPN) and still got kicked.


I made a new account and tried 4 different things:
- Nothing Injected, no Bypass and no VPN -> No kick/ban
- Just VPN (trust.zone) -> No kick/ban
- VPN and Bypass (NoEye Hotpatch Injector) -> No kick/ban
- VPN, Bypass and FortHook (V4) -> No kick/ban

With the old account I would get kicked in any of the above listed cases.

If you do get kicked or banned, please list what of the above you were doing.
Did you write this cheat with C++? or C?
Quote Originally Posted by dlr5668 View Post
CP about new anticheat 1.7.2

the most recent update broke a lot of cheats and I am happy to say that FortHook (now V4) is working again.

A lot of people complained about getting kicked with the error that they are using a VPN, a Machine(wtf) or Cheating.
If you get this error your account is flagged and banned.

I had this error and tried using nothing (not even VPN) and still got kicked.


I made a new account and tried 4 different things:
- Nothing Injected, no Bypass and no VPN -> No kick/ban
- Just VPN (trust.zone) -> No kick/ban
- VPN and Bypass (NoEye Hotpatch Injector) -> No kick/ban
- VPN, Bypass and FortHook (V4) -> No kick/ban

With the old account I would get kicked in any of the above listed cases.

If you do get kicked or banned, please list what of the above you were doing.
How can I download ForthookV4
Be patient please .

- - - Updated - - -

Why is the hack date set to 1996 lol? Anyways //approved

use at your own risk .


EZ boyz. Dont use on main we dont have all information about new anticheat. Just create throwaway acc
YES Approved gonna test it
how to disable battleye ? NoEye still work ?
Just used it with NoEye, works great aimbot does no crazy spins !
Working very good, thanks alot.
PLEASE DONT USE ESP Disable it with F9 in lobby. I am testing all different approaches to detect what may cause bans (headlock, esp, aim smoothing, kills across map, etc). Its complex system and delayed bans make it hard to test fast
Just tried it out, it works perfectly with noeye. Thank you dlr!
Posts 115 of 96 · Page 1 of 7
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?