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 › Combat Arms Hacks & Cheats › Combat Arms Hack Coding / Programming / Source Code › my hack not work

my hack not work

Posts 1–15 of 16 · Page 1 of 2
fallon
fallon
my hack not work
hi i have make a hack and with hot keys but when i start it combat arms close down


i use this code



#include <windows.h>
bool IsGameReadyForHook()
{
if( GetModuleHandleA( "d3d9.dll" ) != NULL
&& GetModuleHandleA( "ClientFX.fxd" ) != NULL
&& GetModuleHandleA( "CShell.dll" ) != NULL )
return true;
return false;
}
void __cdecl PushToConsole( const char* szCommand )
{
DWORD *LTClient = ( DWORD* )( 0x3778BFB0 );
void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
__asm
{
push szCommand;
call CONoff;
add esp, 4;
}
}
void main()
{
while(true)
{
PushToConsole("SkelModelStencil (V_F9)1");
PushToConsole("ShowFps (V_INSERT");
PushToConsole("ActivationDistance 999999(V_F6)" );
PushToConsole("DisableCrosshair (V_NUMPAD 1" );
PushToConsole("CrossHairR 255(V_NUMPAD 2) ");
PushToConsole("ReloadSpeed 0.000000(V_F5) ");
PushToConsole("PerturbRotationEffect 0.000000" );
PushToConsole("PerturbIncreaseSpeed 0.000000" );
PushToConsole("PerturbWalkPercent 0.000000" );
PushToConsole("PerturbFiringIncreaseSpeed 0.000000" );
PushToConsole("PerturbRecoil 0.000000" );
PushToConsole("FireMovePerturb 0.000000" );
PushToConsole("ZoomedFireMoveDuckPerturb 0.000000" );
PushToConsole("ZoomedFireMovePerturb 0.000000" );
PushToConsole("ZoomedFireDuckPerturb 0.000000" );
PushToConsole("BaseMoveAccel 3000.000000");
PushToConsole("StartAccel 3000.000000");
PushToConsole("MaxAccel 3000.000000");
PushToConsole("AccelInc 3000.000000");
PushToConsole("WalkVel 3000.000000");
PushToConsole("FRunVel 3000.000000");
PushToConsole("BRunVel 3000.000000");
PushToConsole("SRunVel 3000.000000");
PushToConsole("JumpVel 3000.000000");
PushToConsole("DuckVel 3000.000000");
}
}

DWORD WINAPI dwHackThread(LPVOID)
{
while( !IsGameReadyForHook() )
Sleep(100);
main();
return 0;
}
BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
{
DisableThreadLibraryCalls(hDll);
if ( dwReason == DLL_PROCESS_ATTACH )
{
CreateThread(NULL, NULL, dwHackThread, NULL, NULL, NULL);
}
return TRUE;
}
#1 · 16y ago
flayer669
flayer669
Update your ltClient to "0x46F670"
#2 · 16y ago
CR
Crash
C+P source + old address + not hotkey = fail.
#3 · 16y ago
yomo710
yomo710
lool dont be mean
#4 · 16y ago
CO
CodeDemon
Is true though ^^
#5 · 16y ago
flashlight95
flashlight95
Haha man!
Code:
PushToConsole("ActivationDistance 999999(V_F6)" );
That's pretty funny.
#6 · 16y ago
DB
DBag4Life69
That's SAD.
OMFG... Dude, like WOW!
Just to let you know, if you think you can code then you need to go RE-read some C++ tutorials... I can't even code very well, and I can just skim through that and tell that you have the WRONG idea there. Just to let you know...


Code:
void main()
{
while(true)
{
PushToConsole("SkelModelStencil (V_F9)1");
PushToConsole("ShowFps (V_INSERT");
PushToConsole("ActivationDistance 999999(V_F6)" );
PushToConsole("DisableCrosshair (V_NUMPAD 1" );
PushToConsole("CrossHairR 255(V_NUMPAD 2) ");
PushToConsole("ReloadSpeed 0.000000(V_F5) ");
PushToConsole("PerturbRotationEffect 0.000000" );
PushToConsole("PerturbIncreaseSpeed 0.000000" );
PushToConsole("PerturbWalkPercent 0.000000" );
PushToConsole("PerturbFiringIncreaseSpeed 0.000000" );
PushToConsole("PerturbRecoil 0.000000" );
PushToConsole("FireMovePerturb 0.000000" );
PushToConsole("ZoomedFireMoveDuckPerturb 0.000000" );
PushToConsole("ZoomedFireMovePerturb 0.000000" );
PushToConsole("ZoomedFireDuckPerturb 0.000000" );
PushToConsole("BaseMoveAccel 3000.000000");
PushToConsole("StartAccel 3000.000000");
PushToConsole("MaxAccel 3000.000000");
PushToConsole("AccelInc 3000.000000");
PushToConsole("WalkVel 3000.000000");
PushToConsole("FRunVel 3000.000000");
PushToConsole("BRunVel 3000.000000");
PushToConsole("SRunVel 3000.000000");
PushToConsole("JumpVel 3000.000000");
PushToConsole("DuckVel 3000.000000");
}
}
Mainly THAT section ^^
That's like the worst thing I have ever seen, and believe me, I haven't seen much but I thought my code sucks, cuz I am also a new coder, but that's just by FAR worse than I have ever done or seen.

Go find a good tutorial and try again, sir!
#7 · 16y ago
topblast
topblast
WTF IS THIS???????





PushToConsole("SkelModelStencil (V_F9)1");




PushToConsole("ShowFps (V_INSERT");

PushToConsole("ActivationDistance 999999(V_F6)" );



PushToConsole("DisableCrosshair (V_NUMPAD 1" );

PushToConsole("CrossHairR 255(V_NUMPAD 2) ");
PushToConsole("ReloadSpeed 0.000000(V_F5) ");
#8 · 16y ago
markoj
markoj
Quote Originally Posted by topblast View Post
WTF IS THIS???????





PushToConsole("SkelModelStencil (V_F9)1");




PushToConsole("ShowFps (V_INSERT");

PushToConsole("ActivationDistance 999999(V_F6)" );



PushToConsole("DisableCrosshair (V_NUMPAD 1" );

PushToConsole("CrossHairR 255(V_NUMPAD 2) ");
PushToConsole("ReloadSpeed 0.000000(V_F5) ");
I dont get it, whats wrong with it. Its a code the says: when f9 is pressed, chams will not work, when INSERT is pressed, fps will not show
#9 · 16y ago
whatup777
whatup777
You fail so much.
#10 · 16y ago
topblast
topblast
Quote Originally Posted by markoj View Post
I dont get it, whats wrong with it. Its a code the says: when f9 is pressed, chams will not work, when INSERT is pressed, fps will not show
LOL that hack is noob proof to the FULLEST. lol
#11 · 16y ago
FV
fvestrgenrl
LOL! void thisisgoinginmysignatureROFL()
#12 · 16y ago
topblast
topblast
Quote Originally Posted by fvestrgenrl View Post
LOL! void thisisgoinginmysignatureROFL()
lol
#13 · 16y ago
flameswor10
flameswor10
LOLWUT WHERE ARE THE IFS.. WHERE ARE THE BOOLS.. EVERYTHING IS IN THE WRONG POSITION LOL
#14 · 16y ago
WH
whit
If You Wright Virgin On Your For Head It Will Work..
#15 · 16y ago
Posts 1–15 of 16 · Page 1 of 2

Post a Reply

Similar Threads

  • Hacks not workingBy crazy4her in WarRock - International Hacks
    12Last post 19y ago
  • [Help] My hacks not workingBy ilovepie21 in Visual Basic Programming
    4Last post 18y ago
  • Money Hack not working?By SundeStorm in Combat Arms Hacks & Cheats
    3Last post 18y ago
  • Strife's Hack not working? Read thisBy killkill4 in Combat Arms Hacks & Cheats
    67Last post 18y ago
  • Strife's hack not working after 9-11? Read this!By AgentElmo in Combat Arms Hacks & Cheats
    20Last post 18y ago

Tags for this Thread

None