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 › Programming › C++/C Programming › [HELP] My No menu hack

[HELP] My No menu hack

Posts 1–15 of 24 · Page 1 of 2
JO
jopopino
[HELP] My No menu hack
Hey,
I finnaly pulled it off to make a working hack. First i had SJ, Stamina and NFD. It worked perfectly, but then i start adding more hacks and now when i go into a game after a few seconds, WarRock shuts down :s.

Can anyone help me? Heres my source:

/*
Project : GBN Public Hack
Author : Naeron
Date : 22.08.2008
Updated: 02.06.2009 (2 July 2009)
*/
#include <stdio.h>
#include <windows.h>
// Adress List //

#define Playerpointer 0x00CC4778
#define Serverpointer 0x00BCE110
#define OFF_NFD 0x00000308
#define OFS_STAMINA 0x00000010
#define OFS_X 0x0000023C
#define OFS_Y 0x00000244
#define OFS_Z 0x00000240
#define OFS_NORECOIL1 0x00000000
#define OFS_NORECOIL2 0x00000004
#define OFS_NORECOIL3 0x00000008
#define ADR_NOSPREAD 0x00B042B0
#define ADR_SCOPE 0x00B04246
#define ADR_SPEED 0x009A7E04
#define ADR_FASTPLANT 0x00695E7A
#define ADR_FASTFLAG 0x00B0425C
#define ADR_FASTAMMO 0x00B04250
#define ADR_FASTHEALTH 0x00B04254
#define ADR_FULLBRIGHT1 0x00B0E1D4
#define ADR_FULLBRIGHT2 0x00B0E1D8
#define ADR_FULLBRIGHT3 0x00B0E1DC
#define ADR_NOBOUNDS1 0x00B351F4
#define ADR_NOBOUNDS2 0x00B351F8
#define ADR_NOWATER 0x00A26F14
#define ADR_SPUP10 0x00B04288
#define ADR_EXTRAAMMO1 0x00B04290
#define ADR_EXTRAAMMO2 0x00B04291
#define OFS_PREMIUM 0x00000374
#define OFS_5_SLOT 0x000E0ABC
#define ADR_ANTIKICK 0x004C16DF
#define ADR_NOSPAWNWAIT1 0x00B227F8
#define ADR_NOSPAWNWAIT2 0x00B839C4

// end adress list //
/////////////////
DWORD *ingame= (DWORD*)Playerpointer;
DWORD *megame= (DWORD*)Serverpointer;
////////////////

// HACK CODES //


void Stamina()
{
DWORD dwPlayerPtr = *(DWORD*)Playerpointer;
if(dwPlayerPtr != 0)
{
*(float*)(dwPlayerPtr+OFS_STAMINA) = 100;
}
}

void Jump()
{
if(GetAsyncKeyState(VK_CONTROL) &1)
{
DWORD dwPlayerPtr = *(DWORD*)Playerpointer;
if(dwPlayerPtr != 0)
{
*(float*)(dwPlayerPtr+OFS_Z) = 2500;
}
}
}

void NFD()
{
DWORD dwPlayerPtr = *(DWORD*)Playerpointer;
if(dwPlayerPtr != 0)
{
*(float*)(dwPlayerPtr+OFF_NFD) = -20000;
}
}

void NoRecoil()
{
DWORD dwPlayerPtr = *(DWORD*)Playerpointer;
if(dwPlayerPtr != 0)
{
*(float*)(dwPlayerPtr+OFS_NORECOIL1) = 0;
*(float*)(dwPlayerPtr+OFS_NORECOIL2) = 0;
*(float*)(dwPlayerPtr+OFS_NORECOIL3) = 0;
}
}

void NoSpread()
{
long t=0;
unsigned long Protection;
VirtualProtect((void*)ADR_NOSPREAD, sizeof(t), PAGE_READWRITE, &Protection);
memcpy((void*)ADR_NOSPREAD, &t , sizeof(t));
VirtualProtect((void*)ADR_NOSPREAD, sizeof(t), Protection, 0);
}

void Scope()
{
if(GetAsyncKeyState(VK_RBUTTON)&1)
{
long t=2;
unsigned long Protection;
VirtualProtect((void*)(ADR_SCOPE), sizeof(t), PAGE_READWRITE, &Protection);
memcpy((void*)(ADR_SCOPE), &t , sizeof(t));
VirtualProtect((void*)(ADR_SCOPE), sizeof(t), Protection, 0);
}
}

void speedon1()
{
if(GetAsyncKeyState(VK_F2) &1)
{
*(float*)(ADR_SPEED) = 200.0f;
}
}

void speedon2()
{
if(GetAsyncKeyState(VK_F3) &1)
{
*(float*)(ADR_SPEED) = 300.0f;
}
}

void speedon3()
{
if(GetAsyncKeyState(VK_F4) &1)
{
*(float*)(ADR_SPEED) = 500.0f;
}
}

void speedoff()
{
if(GetAsyncKeyState(VK_F1) &1)
{
*(float*)(ADR_SPEED) = 100.0f;
}
}


void FastAll ()
{
DWORD dwPlayerPtr = *(DWORD*)Playerpointer;
if(dwPlayerPtr != 0)
{
*(float*)(ADR_FASTPLANT) = 10.0f;
*(float*)(ADR_FASTHEALTH) = 5.0f;
*(float*)(ADR_FASTFLAG) = 10.0f;
*(float*)(ADR_FASTAMMO) = 5.0f;
}}

void fullbright () //fullbright
{
*(int*)(ADR_FULLBRIGHT1) = 1092779973;
*(int*)(ADR_FULLBRIGHT2) = 1092779973;
*(int*)(ADR_FULLBRIGHT3) = 1092779973;
}


void nobounds () //nobounds
{
long t=0;
unsigned long Protection;
VirtualProtect((void*)(ADR_NOBOUNDS1), sizeof(t), PAGE_READWRITE, &Protection);
memcpy((void*)(ADR_NOBOUNDS1), &t , sizeof(t));
VirtualProtect((void*)(ADR_NOBOUNDS1), sizeof(t), Protection, 0);

VirtualProtect((void*)(ADR_NOBOUNDS2), sizeof(t), PAGE_READWRITE, &Protection);
memcpy((void*)(ADR_NOBOUNDS2), &t , sizeof(t));
VirtualProtect((void*)(ADR_NOBOUNDS2), sizeof(t), Protection, 0);
}

void nowater () //no water
{
long t=0;
unsigned long Protection;
VirtualProtect((void*)(ADR_NOWATER), sizeof(t), PAGE_READWRITE, &Protection);
memcpy((void*)(ADR_NOWATER), &t , sizeof(t));
VirtualProtect((void*)(ADR_NOWATER), sizeof(t), Protection, 0);
}

void PXItemSP2 ()
{
*(int*)(ADR_SPUP10) = 1;
}//+ 5% hp

void Dig()
{
if(GetAsyncKeyState(VK_F6) &1)
{
DWORD dwPlayerPtr = *(DWORD*)Playerpointer;
if(dwPlayerPtr != 0)
{
*(float*)(dwPlayerPtr+OFS_Z) = -2000;
}
}
}

void ExtraAmmo () //we want extrea clip allways =)
{
*(int*)(ADR_EXTRAAMMO1) = 1;
}

void ExtraAmmo2 () //we want extrea clip allways =)
{
*(int*)(ADR_EXTRAAMMO2) = 1;
}

void premium () //Gold Premium
{
DWORD dwPlayerPtr = *(DWORD*)Serverpointer;
if(dwPlayerPtr != 0)
{
*(long*)(dwPlayerPtr+OFS_PREMIUM) = 3, 10; // 1 = bronze 2 = silver 3 = gold
}
}

void Slots5 ()
{
DWORD dwPlayerPtr = *(DWORD*)Serverpointer;
if(dwPlayerPtr != 0)
{
*(long*)(dwPlayerPtr+OFS_5_SLOT) = 1;
}
}

void AntiKick ()
{
const BYTE KICKON [] = {0xEB, 0x0D};
{
DWORD dwProtect;
VirtualProtect((void*)(ADR_ANTIKICK), 1, PAGE_EXECUTE_READWRITE, &dwProtect);
memcpy((void*)(ADR_ANTIKICK), &KICKON, 1);
VirtualProtect((void*)(ADR_ANTIKICK), 1, dwProtect, NULL);}}

void HackThread()
{
for(;
{
if(*ingame) //check if we are ingame.. prevent crashs
{
NFD();
Jump();
Stamina();
FastAll();
fullbright();
speedon1();
speedon2();
speedon3();
speedoff();
NoRecoil();
nobounds();
nowater();
Dig();
NoSpread();

}
if(*megame)
{
PXItemSP2();
ExtraAmmo();
ExtraAmmo2();
premium();
Slots5();
AntiKick();

}
Sleep(200); //prevent for overloading the cpu
}
}
BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpReserved)
{
if(dwReason == DLL_PROCESS_ATTACH)
{
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HackThread, 0, 0, 0); //create the hackthread
}
return TRUE;
}
#1 · 17y ago
Hell_Demon
Hell_Demon
...
if you're gonna copy paste and claim it as your own at least remove the credits so noone will notice o__O

Code:
/*
Project : GBN Public Hack
Author : Naeron
Date : 22.08.2008
Updated: 02.06.2009 (2 July 2009)
*/
#2 · edited 17y ago · 17y ago
Oompa loompa
Oompa loompa
Tell us what errors you got...
#3 · 17y ago
JO
jopopino
No errors. Read my post! ^
#4 · 17y ago
Hell_Demon
Hell_Demon
Quote Originally Posted by jopopino View Post
No errors. Read my post! ^
Are you using a bypass? if not that thats why its closing(detected)
#5 · 17y ago
JO
jopopino
Nope. Don't have a bypass. Have you got one for me?
#6 · 17y ago
why06
why06
>_>... this is sad. This is the definition of a script kiddie, there should be more to hacking then just copying and pasting. I don't want code that I can simply copy and past I want to understand how it works, you know what? I'm going to make a thread about that o_O ... well maybe later as I busy, but one day...
#7 · edited 17y ago · 17y ago
JO
jopopino
Quote Originally Posted by Hell_Demon View Post
...
if you're gonna copy paste and claim it as your own at least remove the credits so noone will notice o__O

Code:
/*
Project : GBN Public Hack
Author : Naeron
Date : 22.08.2008
Updated: 02.06.2009 (2 July 2009)
*/
I'm not claiming it's my own. I found a tutorial on how to make a hack wich involves Superjump, Stamina and NFD. Then i searched up codes myself and added them. And i do know what the codes mean, so i'm not just copying and pasting.
#8 · 17y ago
Hell_Demon
Hell_Demon
Quote Originally Posted by jopopino View Post
I'm not claiming it's my own. I found a tutorial on how to make a hack wich involves Superjump, Stamina and NFD. Then i searched up codes myself and added them. And i do know what the codes mean, so i'm not just copying and pasting.
Quote Originally Posted by jopopino
Hey,
I finnaly pulled it off to make a working hack. First i had SJ, Stamina and NFD. It worked perfectly, but then i start adding(read: copy+paste) more hacks and now when i go into a game after a few seconds, WarRock shuts down :s.

Can anyone help me? Heres my source:
your 'i c+p hax and claim them as my own' part has been highlighted.
You did not pull anything off, you copy+paste
Its not your source.
#9 · 17y ago
LA
lalakijilp
make the hacks separate programs

and try them all one by one

so all little hacks and try at which hack it crashes. that narrows down the problem. good luck
#10 · 17y ago
JO
jopopino
I figured it out on my own. FastAll wasn't working
#11 · 17y ago
0oShameo0
0oShameo0
Yea I learned this stuff and it isent easy so dont hate him
#12 · 17y ago
DE
Destrod16
Meh it actually is quite easy. I wrote a 5000 line hack, no errors and it didn't crash the game xD. Too bad the game lags when I run it lol.
#13 · 17y ago
ZE
zeco
Quote Originally Posted by Destrod16 View Post
Meh it actually is quite easy. I wrote a 5000 line hack, no errors and it didn't crash the game xD. Too bad the game lags when I run it lol.
5000 lines....? That seems a bit extreme. What exactly did it do to require 5000 lines, Rewrite most of the game? xD
#14 · 17y ago
DE
Destrod16
Lol pretty much. It was for an MMORPG, and it had about 50 functions. And it had a mutiple GUI's.
#15 · 17y ago
Posts 1–15 of 24 · Page 1 of 2

Post a Reply

Similar Threads

  • [PREVIEW/HELP] LaVoTs CA Menu Hack/Trainer v1.0By Tstovall in Combat Arms Coding Help & Discussion
    10Last post 14y ago
  • Help with no menu hack?By LawlFaceXD in WarRock Hack Source Code
    7Last post 14y ago
  • Please Help With Menu HacksBy power010 in Combat Arms Help
    8Last post 15y ago
  • Help with my First Hack C++ No MenuBy killerld in C++/C Programming
    4Last post 17y ago
  • NFD C++ No Menu Hack HELPBy killerld in C++/C Programming
    3Last post 17y ago

Tags for this Thread

#hack#menu