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 › Can someone help me work this code

Can someone help me work this code

Posts 1–9 of 9 · Page 1 of 1
Jordyr
Jordyr
Can someone help me work this code
Hi could some1 finish this code for me if you do i will pay you 5 bucks via paypal

}
if(GetAsyncKeyState(VK_F1))
{
if(reload)
{
if (pWeaponMgr)
{
for(int i=0; i<445; i++)
{
if((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i)) ) != NULL)
*(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + NoReload) = 0;
}
}
}
}
if(GetAsyncKeyState(VK_F2))
{
if(spread)
{
if (pWeaponMgr)
{
for(int i=0; i<445; i++)
{
if((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i)) ) != NULL)
*(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + nospread) = 0;
}
}
}
#1 · 14y ago
H4
H4CK3R987
Code:
#include <windows.h>
#include "stdafx.h"

#define LtClient           0xA2A7E8
#define reload              0x2424
#define change     0x2428
#define singlefire              0xa38
#define dmg                    0x2538

DWORD WINAPI Hacks (LPVOID)
{
	bool Change           = true,
		 NoReload        = true,
		          SingleFire      = false,
				  OneHitKill      = false;

	                    while(1)
						{
							  DWORD CShell            =  (DWORD) GetModuleHandleA("CShell.dll");
							DWORD pLtClient = *(DWORD*)(CShell + 0xA2A7E8);

							if(GetAsyncKeyState(VK_F1) || GetAsyncKeyState(VK_F2) &1) { OneHitKill = true; Beep(550, 120); }
							if(GetAsyncKeyState(VK_F2) || GetAsyncKeyState(VK_F3) &1) { SingleFire = true; Beep(550, 120); }



							if(Change)
	{
	    if (0xA2A7E8)
	    {
	        for(int i=0; i<445; i++)
		{
		    if((*(DWORD*)((*(DWORD*)(CShell+0xA287A8))+(4*i))) != NULL)
		        *(float*)((*(DWORD*)((*(DWORD*)(CShell+0xA2A7E8))+(4*i))) + change) = 9999;
		}
	    }
	}

							if(OneHitKill)
	{
	    if (0xA2A7E8)
	    {
	        for(int i=0; i<445; i++)
		{
		    if((*(DWORD*)((*(DWORD*)(CShell+0xA2A7E8))+(4*i))) != NULL)
		        *(float*)((*(DWORD*)((*(DWORD*)(CShell+0xA2A7E8))+(4*i))) + dmg) = 999.0f;
		}
	    }
	}

							if(SingleFire)
	{
	    if (0xA2A7E8)
	    {
	        for(int i=0; i<445; i++)
		{
		    if((*(DWORD*)((*(DWORD*)(CShell+0xA2A7E8))+(4*i))) != NULL)
		        *(float*)((*(DWORD*)((*(DWORD*)(CShell+0xA2A7E8))+(4*i))) + 0xa38) = 1;
		}
	    }
	}	

						if(NoReload)
	{
	    if (0xA2A7E8)
	    {
	        for(int i=0; i<445; i++)
		{
		    if((*(DWORD*)((*(DWORD*)(CShell+0xA2A7E8))+(4*i))) != NULL)
		        *(float*)((*(DWORD*)((*(DWORD*)(CShell+0xA2A7E8))+(4*i))) + 0x2424) = 100;
		}
	    }
	    }
	{
			 }


	Sleep(100);
    }
}

bool Ready2Hook()
{
    if(GetModuleHandleA("CShell.dll")   != NULL
    && GetModuleHandleA("ClientFx.fxd") != NULL)
        return 1;
    return 0;
}

DWORD WINAPI Wait(LPVOID)
{
    while(!Ready2Hook()) Sleep(200);
	CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)Hacks, NULL, NULL, NULL);
    return 0;
}

BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
{
    DisableThreadLibraryCalls(hDll);
    
    if ( dwReason == DLL_PROCESS_ATTACH )
    {
	
        MessageBoxA(0, "Coded By H4CK3R987 (Sam)","Injected !", 0);
	

	CreateThread(0,0,(LPTHREAD_START_ROUTINE)Wait,0,0,0);
    }
    return 0;
}
swiftdudes base complete .. but new patch came out so ill giv u a working base later =P
#2 · 14y ago
A$
A$IAN
5 bucks = How much?
#3 · 14y ago
giniyat101
giniyat101
Quote Originally Posted by Philong Nguyen View Post
5 bucks = How much?
3.62 Euro ...
#4 · 14y ago
PH
Philong NguyenAlt
Not worth...
#5 · 14y ago
SM
small298
this MPGH used to be soo good, tehy gave out downloads for just .dll hacks and u just injected to your crossfire, now they do all this complicated crap like u must put this code it, freaking losers, way to lose half your people registered on this website...
#6 · 14y ago
25
258456
Quote Originally Posted by small298 View Post
this MPGH used to be soo good, tehy gave out downloads for just .dll hacks and u just injected to your crossfire, now they do all this complicated crap like u must put this code it, freaking losers, way to lose half your people registered on this website...
lol, then don't come to this section go to the hacks section. This the place where people who know what they are talking about come to discuss interesting things they find in CShell.
#7 · 14y ago
MightySaa0d
MightySaa0d
Quote Originally Posted by H4CK3R987 View Post
Code:
#include <windows.h>
#include "stdafx.h"

#define LtClient           0xA2A7E8
#define reload              0x2424
#define change     0x2428
#define singlefire              0xa38
#define dmg                    0x2538

DWORD WINAPI Hacks (LPVOID)
{
	bool Change           = true,
		 NoReload        = true,
		          SingleFire      = false,
				  OneHitKill      = false;

	                    while(1)
						{
							  DWORD CShell            =  (DWORD) GetModuleHandleA("CShell.dll");
							DWORD pLtClient = *(DWORD*)(CShell + 0xA2A7E8);

							if(GetAsyncKeyState(VK_F1) || GetAsyncKeyState(VK_F2) &1) { OneHitKill = true; Beep(550, 120); }
							if(GetAsyncKeyState(VK_F2) || GetAsyncKeyState(VK_F3) &1) { SingleFire = true; Beep(550, 120); }



							if(Change)
	{
	    if (0xA2A7E8)
	    {
	        for(int i=0; i<445; i++)
		{
		    if((*(DWORD*)((*(DWORD*)(CShell+0xA287A8))+(4*i))) != NULL)
		        *(float*)((*(DWORD*)((*(DWORD*)(CShell+0xA2A7E8))+(4*i))) + change) = 9999;
		}
	    }
	}

							if(OneHitKill)
	{
	    if (0xA2A7E8)
	    {
	        for(int i=0; i<445; i++)
		{
		    if((*(DWORD*)((*(DWORD*)(CShell+0xA2A7E8))+(4*i))) != NULL)
		        *(float*)((*(DWORD*)((*(DWORD*)(CShell+0xA2A7E8))+(4*i))) + dmg) = 999.0f;
		}
	    }
	}

							if(SingleFire)
	{
	    if (0xA2A7E8)
	    {
	        for(int i=0; i<445; i++)
		{
		    if((*(DWORD*)((*(DWORD*)(CShell+0xA2A7E8))+(4*i))) != NULL)
		        *(float*)((*(DWORD*)((*(DWORD*)(CShell+0xA2A7E8))+(4*i))) + 0xa38) = 1;
		}
	    }
	}	

						if(NoReload)
	{
	    if (0xA2A7E8)
	    {
	        for(int i=0; i<445; i++)
		{
		    if((*(DWORD*)((*(DWORD*)(CShell+0xA2A7E8))+(4*i))) != NULL)
		        *(float*)((*(DWORD*)((*(DWORD*)(CShell+0xA2A7E8))+(4*i))) + 0x2424) = 100;
		}
	    }
	    }
	{
			 }


	Sleep(100);
    }
}

bool Ready2Hook()
{
    if(GetModuleHandleA("CShell.dll")   != NULL
    && GetModuleHandleA("ClientFx.fxd") != NULL)
        return 1;
    return 0;
}

DWORD WINAPI Wait(LPVOID)
{
    while(!Ready2Hook()) Sleep(200);
	CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)Hacks, NULL, NULL, NULL);
    return 0;
}

BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
{
    DisableThreadLibraryCalls(hDll);
    
    if ( dwReason == DLL_PROCESS_ATTACH )
    {
	
        MessageBoxA(0, "Coded By H4CK3R987 (Sam)","Injected !", 0);
	

	CreateThread(0,0,(LPTHREAD_START_ROUTINE)Wait,0,0,0);
    }
    return 0;
}
swiftdudes base complete .. but new patch came out so ill giv u a working base later =P
Give me a new base then :P
#8 · 14y ago
[G
[G]enesis
Quote Originally Posted by MightySaa0d View Post
Give me a new base then :P
You are always beggining, learn to code leecher -.-


Quote Originally Posted by MightySaa0d View Post
Give me a new base then :P
You are always beggining, learn to code leecher -.-


Anyways there is a VIP base

Code:
#define LeecherMaster MightySaa0d
#define leech You

DWORD WINAPI Leechs(LPVOID)
{
    
    bool Leecher = false,

DWORD Leeching =  (DWORD) GetModuleHandleA("Leeching.dll");
DWORD pLtClient = *(DWORD*)(Leeching + MightySaa0d);

if(GetAsyncKeyState(VK_F1)  { Leecher = true; }

if(Leecher)
{
if (pLeecherMaster)
{
for(int you=0; brain<1; i--)
{
if((*(DWORD*)((*(DWORD*)(Leeching+LeecherMaster))+(4*i)) ) != NULL)
*(float*)((*(DWORD*)((*(DWORD*)(CShell+LeecherMaster)) +(4*i))) + leech) = MightySaa0d;
}
}
}
#9 · edited 14y ago · 14y ago
Posts 1–9 of 9 · Page 1 of 1

Post a Reply

Similar Threads

  • can someone help me with this plz?By phantom718 in Combat Arms Hacks & Cheats
    8Last post 18y ago
  • can someone help me with this?By sneezing panda in Suggestions, Requests & General Help
    2Last post 16y ago
  • Error, can someone help me with this error.By tien2005 in CrossFire Help
    5Last post 15y ago
  • Can someone help me about this?By sonicbear in Sudden Attack General
    6Last post 16y ago
  • [Solved]Umm can someone help me with this?By lewis1994 in CrossFire Help
    7Last post 15y ago

Tags for this Thread

None