Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › MultiPlayer Game Hacks & Cheats › CrossFire Hacks & Cheats › CrossFire Hack Coding / Programming / Source Code › Crossfire Coding Help & Discussion › Fly Hack help in finding missing Adresses

Fly Hack help in finding missing Adresses

Posts 1–8 of 8 · Page 1 of 1
EGOIST0162
EGOIST0162
Fly Hack help in finding missing Adresses
Can someone help me find the Right Adresses for GravityZ and LTPlayerClient if its not up to date ?



#define LTPlayerClient 0x17C67A0 // Might be Up to date..
#define GravityZ 0x00 //Missing This
#1 · edited 6y ago · 6y ago
(Virus)
(Virus)
Quote Originally Posted by EGOIST0162 View Post
Can someone help me find the Right Adresses for GravityZ and LTPlayerClient if its not up to date ?

Code:
#define LTPlayerClient 0x17C67A0 // Might be Up to date..
#define GravityZ 0x00 //Missing This

DWORD pCLTPlayerClient = *(DWORD*)((LTPlayerClient)+LTPlayerClient);


				if (GetAsyncKeyState(VK_F11) & 1)
				{
					//=======================[Fly Hack ON]============================//

					
					if (pCLTPlayerClient)
					{
						old = *(float*)(pCLTPlayerClient + GravityZ);
						*(float*)(pCLTPlayerClient + GravityZ) = -2.125f;

					}

				}
Code:
GravityPvp = 0xAAC 10 87 ?? ?? ?? ?? F3 0F 59 05 ?? ?? ?? ?? F3 0F 59 45 18 
GravityZM =  0x9CC 10 87 ?? ?? ?? ?? F3 0F 59 05 ?? ?? ?? ?? F3 0F 59 45 18
altcleintshell = 0x1AB09B0   8B 0D ?? ?? ?? ?? 3A C3 6A ?? 68 ?? ?? ?? ?? 8D 45 EC
#2 · 6y ago
EGOIST0162
EGOIST0162
I get a crossfire Cash when i run this:
DWORD pCLTPlayerClient = *(DWORD*)((BSNSHL + LTPlayerClient) + LTPlayerClient);
Can somebody tell me why ?
#3 · 6y ago
(Virus)
(Virus)
Quote Originally Posted by EGOIST0162 View Post
I get a crossfire Cash when i run this:
DWORD pCLTPlayerClient = *(DWORD*)((BSNSHL + LTPlayerClient) + LTPlayerClient);
Can somebody tell me why ?
Code:
DWORD pCLTPlayerClient = *(DWORD*)((BSNSHL + LTPlayerClient) + 0x78)/*Offset_LTPlayerClient)*/;
#4 · 6y ago
EGOIST0162
EGOIST0162
Still getting game Crash: Do you want to report error?

Im using this source:

Code:
#define LTPlayerClient 0x1AB09B0
#define GravityZ 0xAAC

DWORD pCLTPlayerClient = *(DWORD*)((BSNSHL + LTPlayerClient) + 0x78)/*Offset_LTPlayerClient)*/;


				if (GetAsyncKeyState(VK_F11) & 1)
				{
					//=======================[Fly Hack ON]============================//

					
					if (pCLTPlayerClient)
					{
						old = *(float*)(pCLTPlayerClient + GravityZ);
						*(float*)(pCLTPlayerClient + GravityZ) = -2.125f;

					}

				}
Thanks for Contributing @[Snake] but i am not used to this coding style with fancy classes.
€dit: Tryed your code Snake but i cant seem to fly but at least no game crashes ...
#5 · edited 6y ago · 6y ago
IK
iknowitsfake26
Code:
#define PlayerClientAddress 0x000000 //3D ?? ?? ?? ?? 7C EE A1 // Update the addr by yourself search this pattern 
#define PlayerClientOffset 0x7C	// 8B 4B ?? 85 C9 74 ?? 8B 01 FF 90

void Init_Hacks(void)
{
        if (!InGame()) return; // you should check it on InGame to prevent the errors in loading screen or in not InGame
	DWORD CShell_Module = (DWORD)GetModuleHandle("CShell.dll");
	if (CShell_Module == NULL) return;
	DWORD PlayerClient_Fly = *(DWORD*)(CShell_Module + PlayerClientAddress + PlayerClientOffset);
	if (PlayerClient_Fly != NULL)
	{
		if (GetAsyncKeyState(VK_SPACE)) // press space to fly
		{
			*(float*)(PlayerClient_Fly + 0xAAC) = -2.125f;
		}
		else
		{
			*(float*)(PlayerClient_Fly + 0xAAC) = 1.0f; // 1.0f is the default value try to log it
		}
	}
}
note: if still give error maybe there is something mistake on your code and this offset only works on old mode so if you try it on new mode it will give send error, if you want to prevent it just make 2 variables or just check it on gametype.
#6 · edited 6y ago · 6y ago
EGOIST0162
EGOIST0162
I found the flaw now it works thanks you all for Contributing to my post. #closerequest
#7 · 6y ago
TH
TheAnger2
Fly All Maap
Quote Originally Posted by EGOIST0162 View Post
I get a crossfire Cash when i run this:
DWORD pCLTPlayerClient = *(DWORD*)((BSNSHL + LTPlayerClient) + LTPlayerClient);
Can somebody tell me why ?
Fly Hack All Maap - Last updated - May 2020



//Credit Anger [Here]


#define FlyGravity 0xAAC
#define FlyGravityAI 0x9CC
void FlyHack(void)
{
DWORD CShell = (DWORD)GetModuleHandleA("CShell.dll");
DWORD PlayerClient = *(DWORD*)(CShell + 0x1B18DD8 + 0x78 );

if(PlayerClient !=NULL)
{
// Fly

if (GetAsyncKeyState(VK_SPACE) && 1)
{

if (*(DWORD*)( PlayerClient + FlyGravityAI + 0xC ) == 0)
{

*(float*)(PlayerClient + FlyGravity) = -3.125f;
}
else
{
*(float*)(PlayerClient + FlyGravityAI) = -3.125f;
}

}
else
{
if (*(DWORD*)( PlayerClient + FlyGravityAI + 0xC ) == 0)
{
*(float*)(PlayerClient + FlyGravity) = 1.0f;
}
else
{
*(float*)(PlayerClient + FlyGravityAI) = 1.0f;
}
}
}
}

#8 · edited 6y ago · 6y ago
Posts 1–8 of 8 · Page 1 of 1

Post a Reply

Similar Threads

  • Need help finding a King Arthurs gold teleport or fly hackBy 1chidori1 in General Game Hacking
    0Last post 12y ago
  • Fly hack / HelpBy mysterieux in Combat Arms Hacks & Cheats
    4Last post 17y ago
  • Help i need to find a public opk and fly hack with bypassBy mccombietommm in Combat Arms Glitches
    14Last post 16y ago
  • help on fly hack for g forceBy arsenal1514 in CrossFire Help
    7Last post 15y ago
  • Help i need to find a public telekill and fly hack with bypassBy mccombietommm in Combat Arms Help
    5Last post 16y ago

Tags for this Thread

None