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 › [TUT]How To Making a basic Combat Arms NA Hack!

[TUT]How To Making a basic Combat Arms NA Hack!

Posts 1–15 of 18 · Page 1 of 2
BA
BadBlood
[TUT]How To Making a basic Combat Arms NA Hack!
Step 1: Create your basic DllMain function.
Code:

[php] BOOL WINAPI DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved)
{
DisableThreadLibraryCalls(hModule);
if (ul_reason_for_call == DLL_PROCESS_ATTACH)
{
MessageBoxA(0, "WOOO!! Vengeance!!", "Yup", 0);
CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)&Hack, NULL, NULL, NULL);
}
}[/php]

Step 2A: Create the basic function to manipulate unauthorized Console commands.
Code:

[php]void __cdecl PushToConsole(const char* szCommand)
{
DWORD *LTClient = (DWORD*)(0x3778BFB0);
void* CONoff = (void*)*(DWORD*)(*LTClient + 0x208);
__asm
{
push szCommand;
call CONoff;
add esp, 4;
}
}
[/php]
Step 2B: The line:
Code:
[php]
DWORD *LTClient = (DWORD*)(0x3778BFB0);[/php]


Step 3: Now you can use your "PushToConsole" function to use commands, and bind them to hotkeys via GetASyncKeyState or some other form of keyboard hooking.

Code:

[php]for(;; )
{
if (GetASyncKeyState(VK_ADD) & 0x8000)
PushToConsole("windowed 1");
}
[/php]
And if you can't understand the last bit, you shouldn't be reading this anyways but that watches for you to hit a particular key, and executes a Console command that will put the game into Windowed Mode.


Happy hacking!

P.S. Current L.T.Client address at the time of this post is:
Code:

0x3778BFB0
I did not discover any of this, I took this from several threads on MPGH, and de-dumbified it, and put it all in one place for people who understand the C/C++ language and just want to get a quick view/tutorial on how to make a Combat Arms hack.
#1 · 15y ago
whatup777
whatup777
So many errors at first glance.
And not one of these threads again.
#2 · 15y ago
Spookerzz
Spookerzz
So the whole code would be
#3 · 15y ago
SC
scimmyboy
u gotta wait for cshell to be loaded first...
#4 · 15y ago
ac1d_buRn
ac1d_buRn
Quote Originally Posted by scimmyboy View Post
u gotta wait for cshell to be loaded first...
i dont wait for it with my hotkeys /
#5 · 15y ago
Solify
Solify
lol there is missing alot ^^
#6 · 15y ago
SK
skiiiz
All the tutorials are for auto-on/hotkey hax
I want to create a menu-hack

anyways thx for posting
#7 · 15y ago
DL
dllbase
Quote Originally Posted by skiiiz View Post
All the tutorials are for auto-on/hotkey hax
I want to create a menu-hack

anyways thx for posting

i too
#8 · 15y ago
d00ms33k3r
d00ms33k3r
Quote Originally Posted by skiiiz View Post
All the tutorials are for auto-on/hotkey hax
I want to create a menu-hack

anyways thx for posting
Quote Originally Posted by dllbase View Post
i too
then learn how to code a box with a border and then just make it so instead of a hotkey, it looks for a true/false (0/1, off/on). or in so cases like chams, you can put a color or number (off/black/white/blue/red/green/pink or 0 for off and 1/2/3/4/5/6 for the different colors)
#9 · 15y ago
NO
NOOB
Quote Originally Posted by skiiiz View Post
All the tutorials are for auto-on/hotkey hax
I want to create a menu-hack

anyways thx for posting
There are plenty of menu bases here. Pick your favorite.
#10 · 15y ago
eXaLtIc™
eXaLtIc™
It's like a puzzle. But I already found the pieces.
#11 · 15y ago
deathninjak0
deathninjak0
Quote Originally Posted by BadBlood View Post


P.S. Current L.T.Client address at the time of this post is:
Actually...the new LTClient is: 0x377ED7A4
#12 · 15y ago
MO
momo7
how come you cant download hacks for combat arms even if you are a member?
#13 · 15y ago
SK
skiiiz
Quote Originally Posted by ᴺᴼᴼᴮ View Post


There are plenty of menu bases here. Pick your favorite.
kayy. I want your menu base :P
my favourite ^^

#14 · 15y ago
CR
Crash
Quote Originally Posted by skiiiz View Post
kayy. I want your menu base :P
my favourite ^^

Sure, then I'll give you my chams source and enemy player pointer.
#15 · 15y ago
Posts 1–15 of 18 · Page 1 of 2

Post a Reply

Similar Threads

  • [TUT]How To Make Your Own Combat Arms Launcher Skin[TUT]By Corndog in Combat Arms Hacks & Cheats
    46Last post 17y ago
  • How to make a Combat Arms Hotkey hackBy LawlFaceXD in Combat Arms Coding Help & Discussion
    9Last post 14y ago
  • [Help]How to make Program overlay Combat Arms[solved]By Boomdocks in Visual Basic Programming
    6Last post 15y ago
  • Need help making a basic Combat Arms WALLHACK!By JakDG in C++/C Programming
    5Last post 17y ago
  • [REQ] How to make your own Combat Arms Launcher...By creationsbrodcast in Visual Basic Programming
    17Last post 16y ago

Tags for this Thread

None