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 › How to make a warrock hack in C++! :)

TalkingHow to make a warrock hack in C++! :)

Posts 1–15 of 44 · Page 1 of 3
pwnzaz77
pwnzaz77
How to make a warrock hack in C++! :)
How to code a C++ hack for warrock! I WILL GET PICTURES SOON!

Okay first of all you are going to need Visual C++ 2008 Express Edition. You can get it at the microsoft website or use google. Im not allowed to post links sorry.

First you need to open C++, then go to File>New> Project. A window should appear, click next then under "Application Type" click DLL then click finish.

Go up to Project>Add new item. Another window will appear. Click Header file and type in "addresses".

In here you need to put warrock hack addresses. You can get them off MPGH in the warrock section every time warrock updates.

These addresses are modified when warrock is open and that is how you hack it.

If you click on filenamehere.cpp then you need to type in
Code:
#include "stdafx.h" 
#include "addressess.h"
These make sure that stdafx.h and addressess.h are included. Addressess.h is where your addressess are.

You then need to go to addressess.h and type in
Code:
#define ADR_PLAYERPTR 0x00CB11C8
#define ADR_SERVERPTR 0x00B39BE0
These are 2 addresses,the ADR stands for address. The 0x00CB11C8 and 0x00B39BE0 are the actual address. These are changed everytime warrock updates.
Type in
Code:
#define OFS_Z 0x240
The OFS stands for offset. This is an offset for the Z axis of the game. It is used for the superjump hack and No fall damage.

Go back over to the filenamehere.cpp and type in
Code:
 int SuperJump = 1;
 int NoFall = 1;
This declares the SuperJump and No fall(No fall damage) and tells the program that they are true/activated. The 1 means true and if it said 0 then it would mean false. So true/false would mean activated/deactivated or on/off.

We then need to type
Code:
void PlayerHacks(void)
{
DWORD dwPlayerPtr = *(DWORD*)ADR_PLAYERPTR;
  if(dwPlayerPtr != 0){

This defines all the functions(hacks). Under this we type all of our functions(hacks).
if(GetAsyncKeyState(VK_CONTROL) &1){ //superjump when u press ctrl
   if(SuperJump){ // if you press CTRL then...
     *(float*)(dwPlayerPtr+OFS_Z) = 2000.0F; // Warrock character will jump to 2000 in the Z axis (up)
    }
  }
The text after the "//" are comments. I wrote these to explain what happens. Under that we need to type
Code:
   if (NoFall) // if  no fall then
   {*(float*)(dwPlayerPtr+OFS_NOFALL) = -35000.0F;} // i think you need to be damaged 35000 to be affected from falling
So far we have two hacks, SuperJump and No fall damage. Click on stdafx.h and below "#include <windows.h>" type
Code:
void PlayerHacks(void);
Click on dllmain.cpp and delete all the code and replace it with
Code:
#include "stdafx.h"

void hDllMain(void)
{
 while(true){
  PlayerHacks();
  Sleep(30);
 }
}


BOOL APIENTRY DllMain( HMODULE hModule,
                       DWORD  ul_reason_for_call,
                       LPVOID lpReserved
					 )
{
	switch (ul_reason_for_call)
	{
	case DLL_PROCESS_ATTACH:
    DWORD dwID1 = 0;
    HANDLE hThread1 = CreateThread(NULL,0,(LPTHREAD_START_ROUTINE)hDllMain, NULL, NULL,&dwID1 );
    CloseHandle(hThread1);
	break;
	}
	return TRUE;
}
After all of that go to File > Save all and then click Build > Build Solution.

Your hack will then appear in your visual C++ projects folder. Mine is in my documents >> Visual Studio 2008 >> Projects. Find the folder with your hack. Open it and go to debug. Right click the filenamehere.dll and go to copy. Make a new folder on your desktop named First hack. Paste the .dll file into it and then find an injector from MPGH. Put the injector in the First Hack folder and rename it to the name of your .dll file. Open the injector and run Warrock. Log in and hack! If it doesnt work then you have either coded it wrong or the addressess are out of date! I hope this works for you and if it helps then click the Thanks button and reply I may help you if i can
#1 · 17y ago
MA
matt.hewgray
can you give me a tutoral ,how to make a crossfire hack??
#2 · 17y ago
Spoking
Spoking
I need this witout offset or pointers, just with the simple adress value change and freeze
#3 · 17y ago
Liz
[MPGH]Liz
wow thats a great post, FINALLY someone who doesnt assume that we all know c++ but you go step by step. babawin
#4 · 17y ago
pwnzaz77
pwnzaz77
Thxs Liz uhh i dunno about crossfire i have never played or hacked it sorry

EDIT: Can someone sticky this??
#5 · edited 17y ago · 17y ago
UnitedMassacre
UnitedMassacre
o sweet this is exactly what i needed to strip this other one apart. thanks a lot man now i can really get to work!
#6 · 17y ago
gladio30
gladio30
I allways get errors when i build solution. help pls
#7 · 17y ago
KV
kvdirect
What errors are u getting
#8 · 17y ago
MA
Make My Day
FUCK, it said 1 failed....great tut i guess....but my life sucks it will only happen with me, FUCK!!!!!!
#9 · 17y ago
MA
Make My Day
still fucking failed....ugh i hate my life so much....
#10 · 17y ago
pwnzaz77
pwnzaz77
Sorry for the late reply just send me a PM of your msn address/TV or Xfire name and ill help you guys out
#11 · 17y ago
VE
veracts1
Meh nothing works with me either.
#12 · 17y ago
Dextral
Dextral
How to make Combat Arms HAck? PL0X??
#13 · 17y ago
VE
veracts1
Quote Originally Posted by ╥Death Hack╥ View Post
How to make Combat Arms HAck? PL0X??
This is a thread for Warrock hacks try the combat arms bored Combat Arms Hacks - MPGH - MultiPlayer Game Hacking
#14 · 17y ago
Pixie
Pixie
Any idea on making combat arms hacks with this??
#15 · 17y ago
Posts 1–15 of 44 · Page 1 of 3

Post a Reply

Similar Threads

  • [HELP] How do i make undetected warrock hacksBy xtrylanx in WarRock - International Hacks
    29Last post 19y ago
  • Somebody plz make korean warrock hackBy stass15 in WarRock - International Hacks
    20Last post 19y ago
  • [tut for noobs]How to make a boneshot hack with vbBy atheist in WarRock - International Hacks
    18Last post 18y ago
  • [tut for noobs] How to make a invi hack with vbBy atheist in WarRock - International Hacks
    14Last post 18y ago
  • [Request] How to make korean warrock acc.By xxhealxx in WarRock Korea Hacks
    4Last post 18y ago

Tags for this Thread

#hack#make#warrock