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/INFO] first hack tut

[RELEASE/INFO] first hack tut

Posts 1–15 of 21 · Page 1 of 2
dugindog
dugindog
[RELEASE/INFO] first hack tut
this is a tut how to make you first hack
  • download any virsion of visual studios

us this 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 )
{
DWORD *LTClient = ( DWORD* )(0x3778BFB0);
void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
__asm
{
push szCommand;
call CONoff;
add esp, 4;
}
}
void main()
{
while(true)
{
PushToConsole("SkelModelStencil 1"); //Nx Chams
PushToConsole("ModelDebug_DrawBoxes 1"); //Boxes
PushToConsole("ActivationDistance 100000"); //Weapon Pickup
PushToConsole("FogEnable 0"); //No fog
PushToConsole( "FullBright 1" );//Fullbright
PushToConsole( "WireframeModels 1" );//Wireframe
PushToConsole("drawguns 1");
PushToConsole( "CanShootThrough 1 (0)" );
PushToConsole( "CanSeeThrough 1 (0)" );
PushToConsole( "CrossHairB x (0)CrossHairG x (255)CrossHairR x (0)" );
PushToConsole( "SpectatorMode 1 (0)" );
PushToConsole( "RespawnToken 0 (50000000000000000000000000000)" );
}
}
DWORD WINAPI dwHackThread(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, dwHackThread, NULL, NULL, NULL);
}
return TRUE;
}

put in your own PTC commands from
mpgh.net




credits:
codenever for giving me the idea
me for coding it
zoom for some commands
ilikewaterha for some commands
#1 · 16y ago
420Stoner420
420Stoner420
nice ill try but codernever tut source is patched ill check urs ill post results if it does which im like praying it will ima plusrep and thank
#2 · 16y ago
CoderNever
CoderNever
fail?
#3 · 16y ago
markoj
markoj
The last 5 PTC commands don't work.
And yes CoderNever, fail indeed...
#4 · 16y ago
WH
whit
this is just teaching you how you c&p
and you should only post a tut if you also know what code means so you c&ped this also
#5 · 16y ago
420Stoner420
420Stoner420
ill thank but like every other hack you d/c like 2 mins after logon or less
#6 · 16y ago
zmansquared
zmansquared
what is with all these fail hk hacks????
#7 · 16y ago
^...,^
^...,^
Quote Originally Posted by CoderNever View Post
fail?
yes i like ur hack alot more...
#8 · 16y ago
CoderNever
CoderNever
Quote Originally Posted by ^...,^ View Post
yes i like ur hack alot more...
No I meant fail, cause all he did was Copy and paste my source and add crappy PTC commands.
#9 · 16y ago
Polo™
Polo™
Quote Originally Posted by ^...,^ View Post
yes i like ur hack alot more...
His hack works for u?
Does this tut even work?
#10 · 16y ago
HH
hhhjr1
srry to say this isnt a tut a tut is when you explan how to code it and why you put the code there
#11 · 16y ago
WH
whit
Quote Originally Posted by Waka_Flocka_Flame View Post


His hack works for u?
Does this tut even work?
nope Waka do you need a hotkey base?
#12 · 16y ago
Polo™
Polo™
Quote Originally Posted by whit View Post


nope Waka do you need a hotkey base?
Yea my hotkey base actually got patched earlier today.
#13 · 16y ago
WH
whit
Lol im feeling kind add me on msn..
tydawg@live.com
#14 · 16y ago
zmansquared
zmansquared
why did all hk bases get patched
#15 · 16y ago
Posts 1–15 of 21 · Page 1 of 2

Post a Reply

Similar Threads

  • [release]my First HackBy yoos007 in WarRock - International Hacks
    7Last post 19y ago
  • [release] My first hack :)By D4nny in WarRock - International Hacks
    18Last post 19y ago
  • ---->RELEASE<----- MY FIRST HACK ----->RELEASE<-----By jverlaannieuwveen in WarRock - International Hacks
    9Last post 17y ago
  • [RELEASE] my first hackBy quebech4ck in WarRock - International Hacks
    4Last post 18y ago
  • [RELEASE] My first hack ... invisibilityBy HackingIsMyLife in WarRock - International Hacks
    17Last post 18y ago

Tags for this Thread

None