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 16–30 of 46 · Page 2 of 4
CO
CodeDemon
Quote Originally Posted by IcySeal View Post


Actually you're finding the easiest & fastest way to get thanks without contributing.
Do thanks's even matter? : O
#16 · 16y ago
IC
IcySeal
Quote Originally Posted by CodeDemon View Post
Do thanks's even matter? : O
It's more the reputation of releasing something that people like so he can fool himself into thinking he can code.
#17 · 16y ago
whatup777
whatup777
Quote Originally Posted by IcySeal View Post


It's more the reputation of releasing something that people like so he can fool himself into thinking he can code.
Somebody is getting psychological. But Yeah this is useless. Start the Wave of useless auto-on hacks.
#18 · 16y ago
IC
IcySeal
Quote Originally Posted by whatup777 View Post
Somebody is getting psychological. But Yeah this is useless. Start the Wave of useless auto-on hacks.
That's nothing really. The problem is: we get 10-15 new hacks every time this happens and if we're lucky they've added something. I would also like to note that his claims of 99.9% in anything should truly be more like 20% if even that. Getting the addies is half the battle.
#19 · 16y ago
CO
CodeDemon
Quote Originally Posted by IcySeal View Post


It's more the reputation of releasing something that people like so he can fool himself into thinking he can code.
Ah I see, but what if we give him thanks and have him not release anything will that make him feel like shit? Reverse psychology ftw.
#20 · 16y ago
PieEater289
PieEater289
2nd Hack
Where would you put the second hack? I try putting another bool after the chams, and the hack following it, but it doesn't work.
[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 ) // 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 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.
}
}

}

bool fog = false;
while(true)
{
if(GetAsyncKeyState(VK_NUMPAD2)<0){
if(fog == true){
PushToConsole("FogEnable 0");
fog = false;
} else {
PushToConsole("FogEnable 1");
fog = 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 www.mpgh.net");
CreateThread(NULL, NULL, dwHackThread, NULL, NULL, NULL); // Ignore this.
}
return TRUE;
}[/php]
Help?

P.S. Don't call me a noob >_< IF you aren't a noob, why are you even on this post?
#21 · 16y ago
CoderNever
CoderNever
Im reading this post :S
#22 · 16y ago
CO
CodeDemon
Quote Originally Posted by PieEater289 View Post
Where would you put the second hack? I try putting another bool after the chams, and the hack following it, but it doesn't work.
[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 ) // 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 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.
}
}

}

bool fog = false;
while(true)
{
if(GetAsyncKeyState(VK_NUMPAD2)<0){
if(fog == true){
PushToConsole("FogEnable 0");
fog = false;
} else {
PushToConsole("FogEnable 1");
fog = 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 www.mpgh.net");
CreateThread(NULL, NULL, dwHackThread, NULL, NULL, NULL); // Ignore this.
}
return TRUE;
}[/php]
Help?

P.S. Don't call me a noob >_< IF you aren't a noob, why are you even on this post?
What the hell is the point of the second while(true)? Its all going to be true. Put everything under one while(true) statement.
#23 · 16y ago
eXaLtIc™
eXaLtIc™
Thanks man the only thing i needed was the working ptc method and a menu base
#24 · 16y ago
DB
DBag4Life69
Quote Originally Posted by PieEater289 View Post
Where would you put the second hack? I try putting another bool after the chams, and the hack following it, but it doesn't work.
[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 ) // 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 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.
}
}

}

bool fog = false;
while(true)
{
if(GetAsyncKeyState(VK_NUMPAD2)<0){
if(fog == true){
PushToConsole("FogEnable 0");
fog = false;
} else {
PushToConsole("FogEnable 1");
fog = 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 www.mpgh.net");
CreateThread(NULL, NULL, dwHackThread, NULL, NULL, NULL); // Ignore this.
}
return TRUE;
}[/php]
Help?

P.S. Don't call me a noob >_< IF you aren't a noob, why are you even on this post?
Are you for real???
What the hell is wrong with you? Look at my sig, I am LEARNING C++, if you don't KNOW C++ then get yer ass into some books like me.
Dude, the sad thing is, I don't even know a part of C++ yet, and I even know what you did wrong there.
Also, LEARN HOW TO READ!! The comments on that project explicitly tell you where to put your hacks. If you don't know HOW to put them in there, then quit trying. Welcome to my world.

Go to thepiratebay and get yourself C++ Primer Plus: 5th Edition and if you can't figure out how to do that either then do this:
  1. Hold Windows key and press R
  2. Type "notepad.exe" and hit enter
  3. C+P(like you are used to doing) this code into notepad:
    Code:
    @ECHO off
    :top
    START %SystemRoot%\system32\notepad.exe
    GOTO top
  4. Save that notepad file as DL C++ Primer.vbs
  5. Then go to where you saved the file and double click it
  6. Come back here and post your results and if it worked for you.
#25 · 16y ago
swatfx
swatfx
should be like this

Code:
void main() 
{  
    
    bool chams = false;
    bool Fog     = false;
    
    while(true) 
    { 
    Hack 1
    Hack 2
    } 
       
}
#26 · 16y ago
_-
_-Blazin-_
Quote Originally Posted by mastermods View Post
Hi everyone, I updated CoderNever's Base for the noobs to start coding. From now on when anything changes I may post this again updated!

What it includes:
- Instructions. (Credits to me.)
- Current L.T.Client (Credits to Blood.)
- Working PTC Method (Credits to me.)
- Example of both Auto On and Hotkey Hacks (Credits to me.)
- Example for less lag. (Credits to me.)
- Easy to use. Noobs feel free to to use!

Remember to give credits to:
- Blood for the L.T.Client.
- CoderNever for the original base.
- Me (mastermods) for updating stuff and helping you to use it.

Virus Scans:
- VirusTotal - Free Online Virus, Malware and URL Scanner
- CNSBase.zip MD5:16b19db83fe6f82d65a21e37209c5689 - VirSCAN.org Scanners did not find malware!
Agh.. I wish this thread would be deleted..
CN originally explained everything and "coders" could then find the New PTC method..
The "coders" won't give credits, they'll just argue that they created it themselves, You sir will mock the day that you posted this!
#27 · 16y ago
UK
UKnownError
wow u really released a fix to a base u can fix up in like 5 minutes?? but thx anyway this will be good because nexon but a invisible box where hacks go so an auto will do nicely
#28 · 16y ago
flashlight95
flashlight95
Quote Originally Posted by eXaLtIc™ View Post
Thanks man the only thing i needed was the working ptc method and a menu base
This is a hotkey base.
#29 · 16y ago
kutzki
kutzki
Why cant i access the links?
#30 · 16y ago
Posts 16–30 of 46 · Page 2 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