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 › [Warrock] I Make this hack and Now need help! Please read

[Warrock] I Make this hack and Now need help! Please read

Posts 1–9 of 9 · Page 1 of 1
VI
vitinho444
[Warrock] I Make this hack and Now need help! Please read
Hello all MPGH Community
I found there some Hack tutorials in c++ 2008 for make nomenu warrock hacks.

So i make my own hack with address of 15/07/10 (The Last Warrock Update)
and i build the .DLL and make my own injector.
So im gonna test it but.. suprisely it dont work..

if someone can check my code for see any error its cool..

Heres my main.cpp
Code:
#include <windows.h>
#include <stdio.h>

// Adress List //

#define Playerpointer 0x00C3F068
#define Serverpointer 0x00B39BE0
#define OFS_Z 0x00000264
#define OFS_PREMIUM 0x37C

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

void Jump() // superjump if hit control button
{
if(GetAsyncKeyState(VK_LCONTROL) &1)
{
DWORD dwPlayerPtr = *(DWORD*)Playerpointer;
if(dwPlayerPtr != 0)
{
*(float*)(dwPlayerPtr+OFS_Z) = 1500;
}
}
}



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


void HackThread() 
{
for(;; ) 
{
if(*ingame) //check if we are ingame.. prevent crashs
{
Jump();
premium();
}
if(*outgame)
{
premium();
}
Sleep(200); //prevent for overloading the cpu
}
}

BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpvReserved)
{
	if(dwReason == DLL_PROCESS_ATTACH)
	{

            CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HackThread, 0, 0, 0); //create the hackthread
	}
	return TRUE;
}
If u see some error please tell me. (i will credit all people who help me for the hack)
#1 · 16y ago
Pagn
Pagn
Those addies aren't up-to-date. The thread of up-to-date addies isn't new, it is old.
#2 · 16y ago
'Bruno
'Bruno
Leechers....
#3 · 16y ago
Pagn
Pagn
You need to update your source code, because WarRock just turn into D3D9.
#4 · 16y ago
VI
vitinho444
Where are tutorials for that type od D3D?

And where can i find the "Addy Logger" That all have one .. or (how can i make one xD)

thanks for reply
#5 · 16y ago
Pagn
Pagn
-There aren't a d3d9 source code yet. If you want to get it now, try to do it yourself.
-I never used an addys logger, but to get addies i just unpack my WarRock with Kernel Detective.
#6 · 16y ago
VI
vitinho444
so .. ur saying that its almost inpossible to do hacks? right now?
Are u sure that "my code" doesnt work anymore.. ?

About the addie logger.. can u teach me your way ??
#7 · 16y ago
inmate
inmate
Quote Originally Posted by vitinho444 View Post
so .. ur saying that its almost inpossible to do hacks? right now?

No, only people like you which only C&P codes from Tutorials or other People can´t C&P longer cheats
#8 · 16y ago
Hell_Demon
Hell_Demon
Stop leeching and learn how to code

~locked~
#9 · 16y ago
Posts 1–9 of 9 · Page 1 of 1

Post a Reply

Similar Threads

  • Hacks not working Need Help Please AdministratorBy Dema1998 in Combat Arms Hacks & Cheats
    4Last post 17y ago
  • Noobie here and i need help pleaseBy persha in Vindictus Help
    6Last post 14y ago
  • WARROCK HACK AND INJECTOR NEEDED !By stoke101 in WarRock - International Hacks
    20Last post 17y ago
  • Help i have this hack i got and i need help with somthing pleaseBy rizen255 in Combat Arms Help
    0Last post 16y ago
  • I am making Crossfire hack video and i need help...By Brumbo in CrossFire Hacks & Cheats
    15Last post 17y ago

Tags for this Thread

None