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 › source code help!

source code help!

Posts 1–8 of 8 · Page 1 of 1
conman1136
conman1136
source code help!
here is what i have been working on. i have bloods base.
when i inject it nothing happens. sorry i am new to this.. pls no rage! what is wrong with the 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 + 0x28BCE0) );
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 CursorCenter = false;
bool DrawParticles = false;

while(1)
{
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)
{
CursorCenter = !CursorCenter;
}
if(GetAsyncKeyState(VK_NUMPAD7)&1)

DrawParticles = !Drawparticles;
}

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");

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

if (no smoke)
PushToConsole("DrawParticles 1");
else
PushToConsole("DrawParticles 0");

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 Conman", "Injected", 0);
CreateThread(NULL, NULL, dwMainThread, NULL, NULL, NULL);
}
return TRUE;
}
please help me!
#1 · 16y ago
conman1136
conman1136
CAN SOMEONE PLEASE HELP ME!?!?!?!?!
#2 · 16y ago
lauwy
lauwy
Your LTClient is outdated..

Here I post a source after the update:
http://www.mpgh.net/forum/242-crossf...-my-hacks.html

That one is working.
#3 · 16y ago
Swiftdude
Swiftdude
LT client is outdated and xtrap detects hotkeys
#4 · 16y ago
MR
mrkiller2010
Yes swiftdude is right and make sure renew the LTc client blood uloaded
#5 · 16y ago
lauwy
lauwy
Hotkey's still work for me :P
#6 · 16y ago
Hahaz
Hahaz
Quote Originally Posted by lauwy View Post
Hotkey's still work for me :P
how?


.
#7 · 16y ago
lauwy
lauwy
On windows 7 64x they work. On xp 32 bit they don't work.

But registerhotkey works with xp also
#8 · 16y ago
Posts 1–8 of 8 · Page 1 of 1

Post a Reply

Similar Threads

  • Source code +Help+ReleaseBy maxius12 in CrossFire Hacks & Cheats
    33Last post 16y ago
  • Source Code helpBy nicklus in Combat Arms Hack Coding / Programming / Source Code
    8Last post 16y ago
  • [HELP] Source Code HelpBy jonnyboy9985 in Combat Arms Hack Coding / Programming / Source Code
    10Last post 16y ago
  • Source Code Help !By **HACKER** in CrossFire Hack Coding / Programming / Source Code
    5Last post 15y ago
  • Source Code help plzBy hunter7890 in Call of Duty Modern Warfare 2 Coding / Programming / Source Code
    2Last post 15y ago

Tags for this Thread

None