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 › Bases Problem /Patched Base

Bases Problem /Patched Base

Posts 1–14 of 14 · Page 1 of 1
Sydney
Sydney
Bases Problem /Patched Base
Hay...
I cant get any Bases Woking and i am trieng to Fix some Bases And to Mix some...
But i cant get it working ...
So Please Help me...And say what i have to Change/Add...

Thanks

Code:

Code:
#define LTClient_Adress 0x377CC790
#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* )( LTClient_Adress );
void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
__asm
{
push szCommand;
call CONoff;
add esp, 4;
}
}   
void main()
{



			
		while(true)
	{
		PushToConsole("ShowFps 1");

			}
		
		{
}
}
DWORD WINAPI dwHackThread(LPVOID)
{
while( !IsGameReadyForHook() )
Sleep(25);
main();
return 0;
}
BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
{
DisableThreadLibraryCalls(hDll);
if ( dwReason == DLL_PROCESS_ATTACH )
{
	if( MessageBox(0, TEXT("Inject Hack Now?"), TEXT("Inject"), MB_YESNO)==IDYES){
CreateThread(NULL, NULL, dwHackThread, NULL, NULL, NULL);
}
return TRUE;
}

}
Thanks...
#1 · 16y ago
_-
_-Blazin-_
Is your LT client updated? Your hooking method is patched.. I think.. Even though I know probably just as much as you :P
#2 · 16y ago
Sydney
Sydney
Quote Originally Posted by _-Blazin-_ View Post
Is your LT client updated? Your hooking method is patched.. I think.. Even though I know probably just as much as you :P
Ik...Yes newest LTC....And yes...Patched...But i need to Fix it then i can release new Hacks
#3 · 16y ago
_-
_-Blazin-_
Quote Originally Posted by kongamonga View Post
Ik...Yes newest LTC....And yes...Patched...But i need to Fix it then i can release new Hacks
0x3778CFB0?
#4 · 16y ago
Sydney
Sydney
Quote Originally Posted by _-Blazin-_ View Post
0x3778CFB0?
No...There are two LTC...
#5 · 16y ago
★Rusty
★Rusty
Your hook method is patched.
And why did you define the L.T.Client? lol
Get rid of your #Define
and

Replace this:

Code:
void __cdecl PushToConsole( const char* szCommand )
{
	DWORD *LTClient = ( DWORD* )( LTClient_Adress );
void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
__asm
{
push szCommand;
call CONoff;
add esp, 4;
}
}

With this:
Code:
void __cdecl PushToConsole(const char* szCommand )
{
	DWORD dwCShell = (DWORD)GetModuleHandleA("CShell.dll");
	if( dwCShell != NULL )
	{
		DWORD *LTClient = ( DWORD* )( 0x3778CFB0 );
		void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
		__asm
		{
			push szCommand;
			call CONoff;
			add esp, 4;
		}
	}
}
Thank me if i helped.
#6 · 16y ago
ac1d_buRn
ac1d_buRn
Quote Originally Posted by ★Rusty View Post
Your hook method is patched.
And why did you define the L.T.Client? lol
Get rid of your #Define
and

Replace this:

Code:
void __cdecl PushToConsole( const char* szCommand )
{
	DWORD *LTClient = ( DWORD* )( LTClient_Adress );
void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
__asm
{
push szCommand;
call CONoff;
add esp, 4;
}
}

With this:
Code:
void __cdecl PushToConsole(const char* szCommand )
{
	DWORD dwCShell = (DWORD)GetModuleHandleA("CShell.dll");
	if( dwCShell != NULL )
	{
		DWORD *LTClient = ( DWORD* )( 0x3778CFB0 );
		void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
		__asm
		{
			push szCommand;
			call CONoff;
			add esp, 4;
		}
	}
}
Thank me if i helped.
Does that even work with CA O.o
#7 · 16y ago
★Rusty
★Rusty
Works for me
I thought thats how everyone else did it? What do you use?
#8 · 16y ago
ac1d_buRn
ac1d_buRn
i use:

Code:
void __cdecl Push(char* szVal)
{
    void* vSetVar = (void*)0x0046F620;
    _asm
    {
        push szVal
        call vSetVar
        add esp, 4
    }
}
Been using it for AGES
#9 · 16y ago
Sydney
Sydney
Works for Ca Eu to ?
#10 · 16y ago
_-
_-Blazin-_
Quote Originally Posted by kongamonga View Post
No...There are two LTC...
Yes ikt. I'm just saying you should use that one. Btw, since you didn't thank those guys, Im going to go through and do it for you.
#11 · 16y ago
-E
-ExileD-
Rusty what do you have your Detour method set as?

NOP_JMP?
#12 · 16y ago
ST
Stephen
I write my own detours
#13 · 16y ago
Yepikiyay
Yepikiyay
Quote Originally Posted by kongamonga View Post
Works for Ca Eu to ?
should work for both
#14 · 16y ago
Posts 1–14 of 14 · Page 1 of 1

Post a Reply

Similar Threads

  • New War Rock Client Installer, Problems patching or getting past the launcher?By i kosey i in WarRock Tutorials
    1Last post 16y ago
  • patched Bases ProblemBy Sydney in Combat Arms EU Hack Coding/Source Code
    18Last post 16y ago
  • Menu code problem. Cannot open include file: 'Base.h'By westomat in Combat Arms Help
    12Last post 16y ago
  • bases ProblemBy Sydney in Combat Arms EU Hack Coding/Source Code
    3Last post 16y ago

Tags for this Thread

None