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 › [Release]CoderNever's Base Updated

Arrow[Release]CoderNever's Base Updated

Posts 31–45 of 46 · Page 3 of 4
UK
UKnownError
i cant acces the link eather
#31 · 16y ago
Sydney
Sydney
The Servers are Again down...And dude...Delete it from the attachments...All noobs will say that they can code...Let them figure out themself
#32 · 16y ago
conndrst
conndrst
Ok if i did my clueless messing around right then should this work? if not then please correct me.
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 ) // This is the beginning of the PTC Method
{
	DWORD *LTClient = ( DWORD* )( 0x377E7810 /*This is the L.T.Client.*/ );
	void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
	__asm
	{
		push szCommand;
		call CONoff;
		add esp, 4;
	}
}
void main()
{
	// Put all of your bools here for hotkey hacks.
	// For example:
	bool chams = false;
	bool fog = false;
	bool fps = false;
	while(true)
	{

		// This is a example of a auto on hack.
		PushToConsole("SkelModelStencil 1");
		// This is a example of a hotkey hack.
		if(GetAsyncKeyState(VK_NUMPAD1)<0){ // If you press NUMPAD1
			if(chams == true){ // If the bool chams is true
				PushToConsole("SkelModelStencil 0"); // Do this. For example this line is for NX Chams off.
				chams = false; // Make sure bool chams is false.
			} else { // Now where saying if bool chams is equal to false turn on.
				PushToConsole("SkelModelStencil 1"); // Do this. For example this line is for NX Chams on.
				chams = true; // Make sure bool chams is true.
			}
		}

	}
	{ 
        if(GetAsyncKeyState(VK_NUMPAD2)<0){ 
            if(fog == true){ 
                PushToConsole("FogEnable 0"); 
                fog = false; 
            } else { 
            PushToConsole("FogEnable 1"); 
                fog = true; 
            } 
        } 

    } 
	{
		if(GetAsyncKeyState(VK_NUMPAD3)<0){
			if(fps == true){
				PushToConsole("ShowFps 0");
				fps = false;
			}else{
				PushToConsole("ShowFps 1");
				fps = true;
			}
		}
	}
	// Sleep makes less lag. Because the PTC Commands above are rapidly being used. This creates a break between loading again.
	Sleep(200);
}
DWORD WINAPI dwHackThread(LPVOID)
{
	while( !IsGameReadyForHook() )
		Sleep(100);
	main(); // Loads the void main.
	return 0;
}
BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
{
	DisableThreadLibraryCalls(hDll);
	if ( dwReason == DLL_PROCESS_ATTACH )
	{
		// If you want to show a message box or open a website when injected put it here.
		// For example:
		system("start http://mpgh.net/");
		CreateThread(NULL, NULL, dwHackThread, NULL, NULL, NULL); // Ignore this.
	}
	return TRUE;
}
#33 · 16y ago
CO
CodeDemon
Quote Originally Posted by conndrst View Post
Ok if i did my clueless messing around right then should this work? if not then please correct me.
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 ) // This is the beginning of the PTC Method
{
	DWORD *LTClient = ( DWORD* )( 0x377E7810 /*This is the L.T.Client.*/ );
	void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
	__asm
	{
		push szCommand;
		call CONoff;
		add esp, 4;
	}
}
void main()
{
	// Put all of your bools here for hotkey hacks.
	// For example:
	bool chams = false;
	bool fog = false;
	bool fps = false;
	while(true)
	{

		// This is a example of a auto on hack.
		PushToConsole("SkelModelStencil 1");
		// This is a example of a hotkey hack.
		if(GetAsyncKeyState(VK_NUMPAD1)<0){ // If you press NUMPAD1
			if(chams == true){ // If the bool chams is true
				PushToConsole("SkelModelStencil 0"); // Do this. For example this line is for NX Chams off.
				chams = false; // Make sure bool chams is false.
			} else { // Now where saying if bool chams is equal to false turn on.
				PushToConsole("SkelModelStencil 1"); // Do this. For example this line is for NX Chams on.
				chams = true; // Make sure bool chams is true.
			}
		}

	}
	{ 
        if(GetAsyncKeyState(VK_NUMPAD2)<0){ 
            if(fog == true){ 
                PushToConsole("FogEnable 0"); 
                fog = false; 
            } else { 
            PushToConsole("FogEnable 1"); 
                fog = true; 
            } 
        } 

    } 
	{
		if(GetAsyncKeyState(VK_NUMPAD3)<0){
			if(fps == true){
				PushToConsole("ShowFps 0");
				fps = false;
			}else{
				PushToConsole("ShowFps 1");
				fps = true;
			}
		}
	}
	// Sleep makes less lag. Because the PTC Commands above are rapidly being used. This creates a break between loading again.
	Sleep(200);
}
DWORD WINAPI dwHackThread(LPVOID)
{
	while( !IsGameReadyForHook() )
		Sleep(100);
	main(); // Loads the void main.
	return 0;
}
BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
{
	DisableThreadLibraryCalls(hDll);
	if ( dwReason == DLL_PROCESS_ATTACH )
	{
		// If you want to show a message box or open a website when injected put it here.
		// For example:
		system("start http://mpgh.net/");
		CreateThread(NULL, NULL, dwHackThread, NULL, NULL, NULL); // Ignore this.
	}
	return TRUE;
}
It looks like you're closing your while(true) statement after your first KeyState. Don't do that
#34 · 16y ago
conndrst
conndrst
Quote Originally Posted by CodeDemon View Post
It looks like you're closing your while(true) statement after your first KeyState. Don't do that
dam now i have no clue what to do
#35 · 16y ago
markoj
markoj
Quote Originally Posted by conndrst View Post
dam now i have no clue what to do
Dont close your while(true) statement after your first KeyState
#36 · 16y ago
conndrst
conndrst
Quote Originally Posted by markoj View Post
Dont close your while(true) statement after your first KeyState
if i un-close it then it wont build it comes up with this

c:\documents and settings\user\my documents\visual studio 2008\projects\cnsbase\cnsbase\base.cpp(28) : error C2059: syntax error : 'constant'
c:\documents and settings\user\my documents\visual studio 2008\projects\cnsbase\cnsbase\base.cpp(29) : error C2143: syntax error : missing ';' before '{'

i am /noob i know
#37 · 16y ago
CO
CodeDemon
Close it after all your keystates. Besides that you have ALOT of incorrect brackets. I'm still wondering how you got it to compile lol
#38 · 16y ago
markoj
markoj
Quote Originally Posted by conndrst View Post
if i un-close it then it wont build it comes up with this

c:\documents and settings\user\my documents\visual studio 2008\projects\cnsbase\cnsbase\base.cpp(28) : error C2059: syntax error : 'constant'
c:\documents and settings\user\my documents\visual studio 2008\projects\cnsbase\cnsbase\base.cpp(29) : error C2143: syntax error : missing ';' before '{'

i am /noob i know
Close it after you put in all of your hacks, so you open, put your stuff in, t hen close it
#39 · 16y ago
_-
_-Blazin-_
Quote Originally Posted by conndrst View Post
if i un-close it then it wont build it comes up with this

c:\documents and settings\user\my documents\visual studio 2008\projects\cnsbase\cnsbase\base.cpp(28) : error C2059: syntax error : 'constant'
c:\documents and settings\user\my documents\visual studio 2008\projects\cnsbase\cnsbase\base.cpp(29) : error C2143: syntax error : missing ';' before '{'

i am /noob i know
Well if you don't want to be a noob.. You could learn C++..
Im just saying.

BTW, how come the base is uploaded? Couldn't you just paste it into your post?
I still disapprove of this thread
#40 · 16y ago
Shaniee
Shaniee
I can't download it for some reason :/
#41 · 16y ago
conndrst
conndrst
Quote Originally Posted by _-Blazin-_ View Post
Well if you don't want to be a noob.. You could learn C++..
Im just saying.

BTW, how come the base is uploaded? Couldn't you just paste it into your post?
I still disapprove of this thread
here is the orig base code (it gets this error in c++ 2010 express... mt.exe : general error c101008a: Failed to save the updated manifest to the file "Debug\CNSBase.dll.embed.manifest". The parameter is incorrect.)
but it seems to work in 2008 express.

and i dont really mind being a noob but i wouldnt mind being pro either XD


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 ) // This is the beginning of the PTC Method
{
	DWORD *LTClient = ( DWORD* )( 0x377E7810 /*This is the L.T.Client.*/ );
	void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
	__asm
	{
		push szCommand;
		call CONoff;
		add esp, 4;
	}
}
void main()
{
	// Put all of your bools here for hotkey hacks.
	// For example:
	bool chams = false;
	while(true)
	{

		// This is a example of a auto on hack.
		PushToConsole("SkelModelStencil 1");
		// This is a example of a hotkey hack.
		if(GetAsyncKeyState(VK_NUMPAD1)<0){ // If you press NUMPAD1
			if(chams == true){ // If the bool chams is true
				PushToConsole("SkelModelStencil 0"); // Do this. For example this line is for NX Chams off.
				chams = false; // Make sure bool chams is false.
			} else { // Now where saying if bool chams is equal to false turn on.
				PushToConsole("SkelModelStencil 1"); // Do this. For example this line is for NX Chams on.
				chams = true; // Make sure bool chams is true.
			}
		}

	}
	// Sleep makes less lag. Because the PTC Commands above are rapidly being used. This creates a break between loading again.
	Sleep(200);
}
DWORD WINAPI dwHackThread(LPVOID)
{
	while( !IsGameReadyForHook() )
		Sleep(100);
	main(); // Loads the void main.
	return 0;
}
BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
{
	DisableThreadLibraryCalls(hDll);
	if ( dwReason == DLL_PROCESS_ATTACH )
	{
		// If you want to show a message box or open a website when injected put it here.
		// For example:
		system("start http://mpgh.net/");
		CreateThread(NULL, NULL, dwHackThread, NULL, NULL, NULL); // Ignore this.
	}
	return TRUE;
}
#42 · edited 16y ago · 16y ago
JE
jeffhardy745
i cant download this
#43 · 16y ago
conndrst
conndrst
Quote Originally Posted by jeffhardy745 View Post
i cant download this
follow these steps
just name the project CSNBase not CSNBase(orig)
and when adding the cpp file name it Base(it will add .cpp by itself)










And this is the source code from the download so it should work and if not you did somthing wrong
and im just putting this here for the ppl that cant download it(for unknown reasons)
#44 · 16y ago
SnowyHawk
SnowyHawk
Sad face
Download doesn't work.
#45 · 16y ago
Posts 31–45 of 46 · Page 3 of 4

Post a Reply

Similar Threads

  • [Release][Fixed]CoderNever's Base UpdatedBy mastermods in Combat Arms Hack Coding / Programming / Source Code
    11Last post 16y ago
  • [Release] Pow3rHack Public V2-UPDATEDBy Titanium Gold in WarRock - International Hacks
    7Last post 19y ago
  • [Release Ea games keygen updated with Bf 2142]By lohit8846 in Battlefield 2 Hacks & Cheats
    11Last post 17y ago
  • [Release] Ohara Flags/Bases TeleportBy yoni1993 in WarRock - International Hacks
    15Last post 19y ago
  • (release)MPGH publick hack updatedBy aprill27 in WarRock - International Hacks
    25Last post 18y ago

Tags for this Thread

#base#blood#codernever#information#tutorial