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 › [release] Working source after 1051 patch (becouse they delete my hacks))

[release] Working source after 1051 patch (becouse they delete my hacks))

Posts 1–15 of 137 · Page 1 of 10
…
lauwy
lauwy
[release] Working source after 1051 patch (becouse they delete my hacks))
Becouse they delete every hack I upload in the hack section:

Code:
#include <windows.h>
#include <iostream>

using namespace std;

void __cdecl PushToConsole(char* szVal )
{
	DWORD dwCShell = (DWORD)GetModuleHandleA("CShell.dll");
	if( dwCShell != NULL )
	{
		DWORD *LTClient = ( DWORD* )( (dwCShell + 0x299D40) );
		void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x1F8 );
		_asm
		{
			push szVal;
			call CONoff;
			add esp, 4;
		}
	}
}

BOOL WINAPI Main (LPVOID)
{
	bool boxes = true;
	bool nosky = false;
	bool worldframe = false;
	bool playerframe = false;
	bool nogun = false;
	bool Skeleton = false;
	bool FogEnable = false;
	bool CursorCenter = false;

	while(1)
	{
		__asm pushad;
		if(GetAsyncKeyState(VK_NUMPAD1)&1)
		{
			boxes = !boxes;
		}
		if(GetAsyncKeyState(VK_NUMPAD2)&1)
		{
			nosky = !nosky;
		}
		if(GetAsyncKeyState(VK_NUMPAD3)&1)
		{
			worldframe = !worldframe;
		}
		if(GetAsyncKeyState(VK_NUMPAD4)&1)
		{
			playerframe = !playerframe;
		}
		if(GetAsyncKeyState(VK_NUMPAD5)&1)
		{
			nogun = !nogun;
		}
		if(GetAsyncKeyState(VK_NUMPAD6)&1)
		{
			Skeleton = !Skeleton;
		}
		if(GetAsyncKeyState(VK_NUMPAD7)&1)
		{
			FogEnable = !FogEnable;
		}
		if(GetAsyncKeyState(VK_NUMPAD8)&1)
		{
			CursorCenter = !CursorCenter;
		}

		if (CursorCenter)
			PushToConsole("CursorCenter 1");
		else 
			PushToConsole("CursorCenter 0");

		if (FogEnable)
			PushToConsole("FogEnable 1");
		else
			PushToConsole("FogEnable 0");

		if (Skeleton) {
			PushToConsole("ModelDebug_DrawSkeleton 1"); 
		}
		else {
			PushToConsole("ModelDebug_DrawSkeleton 0"); 
		}
		if  (boxes)
			PushToConsole("ModelDebug_DrawBoxes 1");
		else
			PushToConsole("ModelDebug_DrawBoxes 0");

		if  (nosky)
			PushToConsole("DrawSky 0");
		else
			PushToConsole("DrawSky 1");

		if  (worldframe)
			PushToConsole("WireFrame 1");
		else
			PushToConsole("WireFrame 0");

		if  (playerframe)
			PushToConsole("WireFrameModels 1");
		else
			PushToConsole("WireFrameModels 0");

		if  (nogun)
			PushToConsole("DrawGuns 0");
		else
			PushToConsole("DrawGuns 1");
		__asm popad;

		Sleep(100);
	}
}

bool Ready(void)
{
    if( GetModuleHandleA("CShell.dll")!= NULL)
        return true;
    return false;
}

DWORD WINAPI dwMainThread(LPVOID)
{
	while (!Ready())
		Sleep(200);
	CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)Main, 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 lauwy", "Injected", 0);
		CreateThread(NULL, NULL, dwMainThread, NULL, NULL, NULL);
	}
	return TRUE;
}
Download upx:
UPX: the Ultimate Packer for eXecutables - Homepage

start cmd, put the upx location in and the dll location:
"C:\upx305w\upx" "c:\lauwy.dll"

He will pack the dll, inject the dll in crossfire.
Happy hacking

This is the base from blood + some more PTC commands + new LTClient

GL!

Here is the hack com + packt:

Here you see ingame:


Here you see how to hack: (full video)


Over a few minutes the video will be 720p.


Normaly I don't copy a base. But this was faster (a)

Only thank me for the vid.
I only have 1% credits for the hack becouse I added some PTC commands.
And made im work after the patch.


____

Code:
//Working hotkey:

#include "stdafx.h"

int _cdecl _tmain (
    int argc, 
    TCHAR *argv[])
{           
    if (RegisterHotKey(NULL,1,NULL,0x30))    //0
    {
        _tprintf(_T("Hotkey 0 set\n"));
    }
 
    MSG msg = {0};
    while (GetMessage(&msg, NULL, 0, 0) != 0)
    {
        if (msg.message == WM_HOTKEY)
        {
            _tprintf(_T("HOTKEY\n"));            
        }
    } 
 
    return 0;
}
#1 · edited 16y ago · 16y ago
scar-l
scar-l
how to use upx dude?
there is no readme that explains how to use in clear words
#2 · 16y ago
lauwy
lauwy
I upload a video 1 sec




Video added
#3 · edited 16y ago · 16y ago
shefoalaao
shefoalaao
cant download UPx for the widows 7 !! ?
#4 · 16y ago
lauwy
lauwy
UPx works on windows 7,
#5 · 16y ago
scar-l
scar-l
ty for video
#6 · 16y ago
shefoalaao
shefoalaao
then nothing to do with it :S must download microsoft visual studio 2008 ?
#7 · 16y ago
scar-l
scar-l
its to pack the hack so noone can decompile it

vs is to make the dll

UPx to pack it

if u want just the hack u can DL it cause our dude here has already provided the dll
#8 · 16y ago
lauwy
lauwy
If I upload it in the hack download section they will delete it.
You also can use PushToConsole("DrawParticles 0"); for no smoke.
There are mutch more commands.



Quote Originally Posted by scar-l View Post
ty for video
NP
#9 · 16y ago
OV
OverDrivejt
hotkeys only work in windows 7 64 bits...
#10 · 16y ago
MA
matic99
THX. works...
#11 · 16y ago
lauwy
lauwy
Quote Originally Posted by OverDrivejt View Post
hotkeys only work in windows 7 64 bits...
I'm going to find a other way.
But how did you unpackt Cshell.dll?
Can you please help me with it?

I'm hexing 1 hour now :S
After that I find a other way to use hotkey's.
#12 · 16y ago
Hahaz
Hahaz
Quote Originally Posted by scar-l View Post
its to pack the hack so noone can decompile it

vs is to make the dll

UPx to pack it

if u want just the hack u can DL it cause our dude here has already provided the dll
Wrong.

You give me any file packed with latest upx, i will send u the unpacked one in couple of minutes as long its PE32 not broken.

Unpack upx is DAMN easy, reason the file is packed to avoid detection from xtrap (like in warrok can detect any themida files) that's what i heard.

Edit: @lauwy, just one question.. how to make the hotkeys work? i'm using xp & most of configuration i made gave me error result including your base at main post.
#13 · edited 16y ago · 16y ago
scar-l
scar-l
tell me dude... how it dc's so often when using the hack? maybe u know that?
ive found many threads bout that but the solustions wirtten there didnt help me
i have to do it bout 30 times till it works ^^'
its kinda random
#14 · 16y ago
Hahaz
Hahaz
@scar-l, get better injector? i use blackdragon injector on my xp & no single dc after played for 2 hours.

Note: Maybe try use an injector that has stealth options. DK's one or others..
#15 · 16y ago
Posts 1–15 of 137 · Page 1 of 10
…

Post a Reply

Similar Threads

  • Working WallHack After Showdown patch![Pics incl.]By 999001 in Combat Arms Hacks & Cheats
    55Last post 17y ago
  • working aimbot after the patch july 17By haker1 in CrossFire Hacks & Cheats
    35Last post 17y ago
  • Fixed "Combat Arms has stopped working Error" --- After latest patch!By Dested in Combat Arms Help
    5Last post 16y ago
  • FIRST working hack after the patch by raamieBy raamie in Combat Arms Europe Hacks
    87Last post 17y ago
  • Semi Working Teamspeak.exe after new patchBy Bummmann in Combat Arms Europe Hacks
    8Last post 17y ago

Tags for this Thread

None