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 › Other Semi-Popular First Person Shooter Hacks › WarRock - International Hacks › WarRock Hack Source Code › NoMenu help

NoMenu help

Posts 1–13 of 13 · Page 1 of 1
BA
barcoder
NoMenu help
I think i messed with the properties in my hack now WarRock keeps crashing. Heres my code with just superjump and NFD. Can someone tell me why it keeps crashing?
Also, Please tell me the project properties I need to use. Thanks

#ifndef Base_CPP // We will need this at the end
#include <windows.h> // Include the windows header file

#define ADR_PLAYERPOINTER 0x00ABD750
#define ADR_SERVERPOINTER 0x00943D98
#define OFS_X 0x000102DC
#define OFS_Y 0x000102EC
#define OFS_Z 0x000102E4
#define NFD 0x000102C4

// INT HACKS
int CH_Superjump = 1;

// Public Hacks
void Hack(void){
for(;{
DWORD Servercall = *(DWORD*)ADR_PLAYERPOINTER;
DWORD Playercall = *(DWORD*)ADR_SERVERPOINTER;

// Superjump
{
if(CH_Superjump == 1){
if(GetAsyncKeyState(VK_CONTROL) &1){
if(Playercall != 0){
*(float*)(Playercall+OFS_Z) = 2500;}}}
}

// NFD
{
*(float*)(Playercall+NFD) =- 13948;
}


// HackThread

Sleep(10);
}
}

BOOL WINAPI DllMain(HINSTANCE hModule,DWORD dwReason,LPVOID lpvReserved){
if(dwReason==DLL_PROCESS_ATTACH){
CreateThread(0,0,(LPTHREAD_START_ROUTINE)Hack,0,0, 0);}
return TRUE;}
#endif
If I manually inject it, the game just doesnt start. Was working yesterday but I messed with something and screwed it up. Now I tried copying the code and pasting in a new project but no luck
#1 · edited 15y ago · 15y ago
AeroMan
AeroMan
No offence,but didn't you just release a nomenu tutorial?
#2 · 15y ago
BA
barcoder
I did, and then I messed with some stuff and screwed it up lol
#3 · 15y ago
Zithium
Zithium
So you know enough to teach others, but not enough to fix your own errors? xD
#4 · 15y ago
ZO
zorro23
nice nice ^^
#5 · 15y ago
R3
R3dLine
Just took look on source and sry but i couldn't stop laughing on it lol .
#6 · 15y ago
BA
barcoder
@ReDLiNe
look at this, these pros think they are so good and cant help a noob. This is why i dont like you
#7 · 15y ago
R3
R3dLine
Quote Originally Posted by barcoder View Post
@ReDLiNe
look at this, these pros think they are so good and cant help a noob. This is why i dont like you
Ya cuz you have to fucking learn your self you call ur self coder when u face problem u keep ask for help why the hell you don't try to fix it ur self .. and talking about that me and Aero helped you and what we got ? nothing ....
#8 · 15y ago
BA
barcoder
oh stfu and stop crying. I ask for help because there is an option for HELP you moron. Stop replying and just code your hacks, obviously u can't help
#9 · 15y ago
R3
R3dLine
Quote Originally Posted by barcoder View Post
oh stfu and stop crying. I ask for help because there is an option for HELP you moron. Stop replying and just code your hacks, obviously u can't help
even my little brother can code better than you trust me ...

Will nothing more to say oh wait ' L2C '
#10 · edited 15y ago · 15y ago
Zithium
Zithium
Here, I edited your code a bit. Works fine for me. Don't take this a wrong way, but maybe learn more before you try to do something in which you don't know what the code is actually doing

Code:
#include <windows.h> 

// [===Addies===]
#define ADR_PLAYERPOINTER 0x00ABD750
#define ADR_SERVERPOINTER 0x00943D98
#define OFS_X 0x000102DC
#define OFS_Y 0x000102EC
#define OFS_Z 0x000102E4
#define NFD 0x000102C4

// [===Hacks===]
int Superjump = 1;
int NoFall = 1;


// [===Functions===]
void Hacks(void)
{
DWORD dwPlayerPointer = *(DWORD*)ADR_PLAYERPOINTER;
if(dwPlayerPointer != 0){

if(Superjump == 1)
	{
		if(GetAsyncKeyState(VK_CONTROL) &1)
		{
		*(float*)(Playercall+OFS_Z) = 2500;
		}
	}
if(NoFall==1)
	{
		*(float*)(Playercall+NFD) = -99999;
	}
  }
 Sleep(10);
}
// [===Create Your Thread===]
void HackThread(void)
{
	while (true)
	{
		Hacks();
		Sleep(1); 
	}   
}
// [===Start Your Hacks===]
BOOL WINAPI DllMain(HMODULE hDll, DWORD dwReason, LPVOID lpReserved)
{
	if (dwReason==DLL_PROCESS_ATTACH) 
	{
		CreateThread(NULL,NULL,(LPTHREAD_START_ROUTINE)HackThread,NULL,NULL,NULL);
		return TRUE;
	}

	return FALSE;
}
#11 · 15y ago
BA
barcoder
i already fixed it. I'll stick with mine.
#12 · 15y ago
R3
R3dLine
Quote Originally Posted by Zithium View Post
Here, I edited your code a bit. Works fine for me. Don't take this a wrong way, but maybe learn more before you try to do something in which you don't know what the code is actually doing

Code:
#include <windows.h> 

// [===Addies===]
#define ADR_PLAYERPOINTER 0x00ABD750
#define ADR_SERVERPOINTER 0x00943D98
#define OFS_X 0x000102DC
#define OFS_Y 0x000102EC
#define OFS_Z 0x000102E4
#define NFD 0x000102C4

// [===Hacks===]
int Superjump = 1;
int NoFall = 1;


// [===Functions===]
void Hacks(void)
{
DWORD dwPlayerPointer = *(DWORD*)ADR_PLAYERPOINTER;
if(dwPlayerPointer != 0){

if(Superjump == 1)
	{
		if(GetAsyncKeyState(VK_CONTROL) &1)
		{
		*(float*)(Playercall+OFS_Z) = 2500;
		}
	}
if(NoFall==1)
	{
		*(float*)(Playercall+NFD) = -99999;
	}
  }
 Sleep(10);
}
// [===Create Your Thread===]
void HackThread(void)
{
	while (true)
	{
		Hacks();
		Sleep(1); 
	}   
}
// [===Start Your Hacks===]
BOOL WINAPI DllMain(HMODULE hDll, DWORD dwReason, LPVOID lpReserved)
{
	if (dwReason==DLL_PROCESS_ATTACH) 
	{
		CreateThread(NULL,NULL,(LPTHREAD_START_ROUTINE)HackThread,NULL,NULL,NULL);
		return TRUE;
	}

	return FALSE;
}
Good job really u Fixed 4/5 ther still 1 thing left
#13 · 15y ago
Posts 1–13 of 13 · Page 1 of 1

Post a Reply

Similar Threads

  • NoMenu HELPBy barcoder in WarRock Hack Source Code
    11Last post 15y ago
  • help me make nomenuBy kjn220 in C++/C Programming
    4Last post 16y ago
  • nomenu gen helpBy barcoder in WarRock Hack Source Code
    2Last post 15y ago
  • Help im having problems creating my 1st nomenu hack.By umbraga01 in WarRock Hack Source Code
    9Last post 15y ago
  • need help with my nomenuBy llzll in WarRock Discussions
    5Last post 16y ago

Tags for this Thread

#spam thread