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 Europe Hacks › Combat Arms EU Hack Coding/Source Code › [HELP] How to make hacks?

Question[HELP] How to make hacks?

Posts 1–5 of 5 · Page 1 of 1
NO
noammn
[HELP] How to make hacks?
How to make hacks?
Please help me
#1 · 16y ago
Kuro Tenshi
Kuro Tenshi
Read Coder Never's tutorial:
http://www.mpgh.net/forum/207-combat...arms-hack.html

Press the thanks button after your done reading it...after this just learn from some C++ books/C++ section can help you out too.

Request /Close
#2 · 16y ago
NO
noammn
what is what i wrote:
[php]
#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("ShowFps 1");
}
}
DWORD WINAPI HackThread(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, HackThread, NULL, NULL, NULL);
}
return TRUE;
}
[/php]
But, when I entered the game after the loading screen the game closes.
#3 · 16y ago
Kuro Tenshi
Kuro Tenshi
yeah its found... you need to patch it, some say only the ltc, i say add a bypass. i need one from gellins base, so yeah.
#4 · 16y ago
Zoom
Zoom
Well CNs hack tutorial is detected.

If you manage to bypass your hack and update the LTC you might get it to work

Good luck.
/Closed
#5 · 16y ago
Posts 1–5 of 5 · Page 1 of 1

Post a Reply

Similar Threads

  • Need help how to make hacksBy DHANte24 in General Game Hacking
    3Last post 16y ago
  • [Help] How to make a hackBy bjorn1213 in Combat Arms Europe Hacks
    10Last post 17y ago
  • how to make hacks? please helpBy apenknul in C++/C Programming
    2Last post 17y ago
  • [HELP]How to make a dll hackBy fadee in Combat Arms Hack Coding / Programming / Source Code
    12Last post 16y ago
  • Help Me Learn How to Make Hacks!By reviver555 in Alliance of Valiant Arms (AVA) Hacks & Cheats
    4Last post 16y ago

Tags for this Thread

None