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 › My code keeps crashing the game

ExclamationMy code keeps crashing the game

Posts 1–6 of 6 · Page 1 of 1
JO
johnnydicamillo
My code keeps crashing the game
For some reason my source code keeps crashing my game when ever i go into the match.
#include <windows.h>
#include <stdio.h>

//-------------------Define Hacks----------------------//

#define Playerpointer 0xD45310
#define Serverpointer 0xC41938
#define OFS_Z 0x102D8
#define NFD_Player_OffSet 0x103A8
#define OFS_NORECOIL1 0x1C
#define OFS_NORECOIL2 0x20
#define OFS_NORECOIL3 0x24
#define Speed 0xA65CAC
#define No_Spread 0x000000
#define Extra_Ammo_1 0xBC78CC
#define Extra_Ammo_2 0xBC78CD

//------------------End Define Adddies-----------------//

//--------------------------Define HackThread--------------------------//

DWORD *ingame= (DWORD*)Playerpointer;
DWORD *outgame= (DWORD*)Serverpointer;

//--------------------------End Define HackThread--------------------------//

//--------------------------Start Hacks--------------------------//

void PlayerHacks() // Start PlayerHacks
{
DWORD dwPlayerPtr = *(DWORD*)Playerpointer;
if(dwPlayerPtr != 0){

//No Recoil
{*(float*)(dwPlayerPtr+OFS_NORECOIL1) = 0;
*(float*)(dwPlayerPtr+OFS_NORECOIL2) = 0;
*(float*)(dwPlayerPtr+OFS_NORECOIL3) = 0;}

//End No Recoil

//Speed x2
{if(GetAsyncKeyState(VK_NUMPAD1) &1<< 0xF){
*(float*)(Speed) = 200.0f;}}

//Speed x3
{if(GetAsyncKeyState(VK_NUMPAD2) &1<< 0xF){
*(float*)(Speed) = 300.0f;}}

//Speed x5
{if(GetAsyncKeyState(VK_NUMPAD3) &1<< 0xF){
*(float*)(Speed) = 500.0f;}}

//Speed Normal
{if(GetAsyncKeyState(VK_NUMPAD0) &1<< 0xF){
*(float*)(Speed) = 100.0f;}}

//Extra Ammo A
{*(int*)(Extra_Ammo_1) = 1;}

//Extra Ammo S
{*(int*)(Extra_Ammo_2) = 1;}

//No Spread
{*(float*) No_Spread = 0;}
//End No Recoil

//Superjump

{if(GetAsyncKeyState(VK_CONTROL) &1){
*(float*)(dwPlayerPtr+OFS_Z) = 1000;}}

//End Superjump

// No Fall Damage

{*(float*)(dwPlayerPtr+NFD_Player_OffSet) = -20000;}

//End No Fall Damage

}} //End PlayerHacks

void ServerHacks() // Start ServerHacks
{
DWORD dwSrvrPtr=*(DWORD*)Serverpointer;
if(dwSrvrPtr!=0){

}} //End ServerHacks

//--------------------------End Hacks--------------------------//

//-------------------------HackThread--------------------------//

void Hacks(){
for(;{
PlayerHacks();
ServerHacks();
Sleep(20);}}

//--------------------------End HackThread--------------------------//

//--------------------------End--------------------------//

BOOL WINAPI DllMain(HINSTANCE mod, DWORD DWORD_GRUND, LPVOID res){
switch(DWORD_GRUND){
case 1:
ShellExecuteA(NULL,"Open","http://www.sealteamvi.*********/",NULL,NULL,1);
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)Hacks , 0, 0, 0);
break;
case 2:
break;}
return TRUE;}

//--------------------------End--------------------------//
//credits go to [Tutorial] WarRock NoMenu Hack [Date = 2 sept 2010] - Gamerz Needs - For All Your Gaming Needs! for helping me create this main.cpp
#1 · 15y ago
GH
Gh0sts~l1f3
Try Remove this ShellExecuteA(NULL,"Open","http://www.sealteamvi.*********/",NULL,NULL,1);

Remove it and test
#2 · 15y ago
JO
johnnydicamillo
Quote Originally Posted by Gh0sts~l1f3 View Post
Try Remove this ShellExecuteA(NULL,"Open","http://www.sealteamvi.*********/",NULL,NULL,1);

Remove it and test
no that did nothing besides stoppping my clan website from showing up
#3 · 15y ago
GH
Gh0sts~l1f3
y i know what it do and it some time made hack detected
#4 · 15y ago
JO
johnnydicamillo
Quote Originally Posted by Gh0sts~l1f3 View Post
y i know what it do and it some time made hack detected
this is old can we get someone to close this
#5 · 15y ago
xTremist
xTremist
Stop spamming threads, please.
#6 · 15y ago
Posts 1–6 of 6 · Page 1 of 1

Post a Reply

Tags for this Thread

None