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 › Call of Duty Hacks & Cheats › Call of Duty 5 - World at War Hacks › WaW Offset Dumper - ALL DVARS

WaW Offset Dumper - ALL DVARS

Posts 1–15 of 16 · Page 1 of 2
HexMurder
HexMurder
WaW Offset Dumper - ALL DVARS
Long story short; World at war was the first game i ever hacked. And to this day i find myself searching for new hacks to make on waw zombies when i get bored. Unfortunately this section of mpgh is nearly dead. Another member posted a bunch of offsets which (unfortunately) are incorrect for most of us because they are not pointers. SO I took it upon myself to create this little tool for anyone who wants to hack what is still left of this game. Probably not useful for most people but whatever. Some devs may appreciate it.

Simply run the game, start a game of zombies or a solo level, run my hack, enter your process name (usually codwaw.exe) hit enter.


A list is generated called DvarDump.txt.
After that just open up the text file and its pretty straight forward. Add the address for the dvar you want in cheat engine and hack away.


Maybe i'l get around to making one FINAL trainer that has every feature i can think of for this game. Really love hacking this one and it's such a shame that people have forgotten it. Anyway hope you all enjoy. Thanks a ton to barata for helping me with this.


NOTE:When adding addresses to cheat engine make sure they are the correct type. i.e. when adding the address for jump_height it will say the value is some gibberish number like 102322105 untill you change it to float. then it reads it correctly as 39.

Also keep in mind that this searches through active game memory. So you will probably find more dvars if you load a level than if you just boot the game and run this in the main menu.


virus scans:
https://virusscan.jotti.org/en-US/fi...job/ayeugb46g7
https://www.virustotal.com/en/file/c...is/1469692922/
WaW Offset Dumper 1.0_mpgh.net.rar
#1 · edited 10y ago · 10y ago
akim14
akim14
//Approved
#2 · 10y ago
Robloitz
Robloitz
HOw did you even get the offsets
#3 · 10y ago
HexMurder
HexMurder
Quote Originally Posted by Robloitz View Post
HOw did you even get the offsets
Lots of hard work. Debugging, Reversing, C++ing.
#4 · 10y ago
gogogokitty
gogogokitty
feedback = good
#5 · 10y ago
JA
jambo834429
Would this in theory allow me to change a dvar even if im not the host for example turning god on or giving all for example
#6 · 10y ago
gogogokitty
gogogokitty
Quote Originally Posted by jambo834429 View Post
Would this in theory allow me to change a dvar even if im not the host for example turning god on or giving all for example
no, you can only alter dvars if your host
#7 · 10y ago
gogogokitty
gogogokitty
whys this game have to be dead. its still one of the funnest call of duty's to date
#8 · 9y ago
GE
gerherhtherherdhher
Quote Originally Posted by HexMurder View Post


Lots of hard work. Debugging, Reversing, C++ing.
Just lol. It took about 1 minute to find the 2 needed address. The code I came up with is just 16 lines.

Code:
#include <fstream>
#include <algorithm>

struct DvarDumper
{
	DvarDumper(const char* fileName)
	{
		std::fstream file { fileName, std::ios::out | std::ios::app };
		std::for_each(reinterpret_cast<const char***>(0x063EF348), reinterpret_cast<const char***>(0x063EF348) + *reinterpret_cast<size_t*>(0x063EF320),
			[&file](auto dvar)
			{
				file << "Name: " << *dvar << "\nDescription: " << *(dvar + 1) << "\nAddress: 0x" << dvar << "\n\n";
			});
		file.close();
	}
} dvarDumper("dvars.txt");
Compile it as a dll (you will need C++14) and inject. The addresses are for an older version of MW2. (I don't have WaW installed atm)
#9 · 9y ago
Z-Nation
Z-Nation
Quote Originally Posted by gogogokitty View Post
whys this game have to be dead. its still one of the funnest call of duty's to date
Hopefully B03 will become this good when they finally release the Mod support system...
#10 · 9y ago
gogogokitty
gogogokitty
somewhat off topic question, any idea what the base address is for the dvars so i can find the offsets/pointers for each command?
#11 · 9y ago
HexMurder
HexMurder
Quote Originally Posted by gogogokitty View Post
somewhat off topic question, any idea what the base address is for the dvars so i can find the offsets/pointers for each command?
I don't have the source anymore. I just used ida and looked for a string that said something along the lines of "Can't create dvar". Then i reverse engineered from there to find the dvar base address. Sorry if that doesn't help.
#12 · 9y ago
gogogokitty
gogogokitty
Quote Originally Posted by HexMurder View Post


I don't have the source anymore. I just used ida and looked for a string that said something along the lines of "Can't create dvar". Then i reverse engineered from there to find the dvar base address. Sorry if that doesn't help.
that will probably help once i get ida installed, ive used it twice, both times had not known anything about it. did you use any specific source to learn ida?
#13 · 9y ago
HexMurder
HexMurder
Quote Originally Posted by gogogokitty View Post
that will probably help once i get ida installed, ive used it twice, both times had not known anything about it. did you use any specific source to learn ida?
Trial and error my friend lol. I'm not too good with ida tbh.
#14 · 9y ago
gogogokitty
gogogokitty
Quote Originally Posted by HexMurder View Post


Trial and error my friend lol. I'm not too good with ida tbh.
aparently guided hacking has a little video series on it to atleast get you started
#15 · 9y ago
Posts 1–15 of 16 · Page 1 of 2

Post a Reply

Similar Threads

  • MW2 SP Console Unlocked - All dvarsBy ToolB0x in Call of Duty 6 - Modern Warfare 2 (MW2) Hacks
    17Last post 10y ago
  • CS: GO offset dumperBy foxxywoxxy in Counter-Strike 2 Hacks
    7Last post 12y ago
  • [Release]All dvars explanaiton.By GBot! in Call of Duty Modern Warfare 2 Server / GSC Modding
    19Last post 16y ago
  • Y3t1yt's Offset Dumper V 1.3By foxxywoxxy in Counter-Strike 2 Hacks
    7Last post 12y ago
  • BF4 Offset Dumper + Source [By SmallC)By DadDelta in Battlefield 4 Hacks & Cheats
    3Last post 11y ago

Tags for this Thread

None