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 › help memory editing Steam

help memory editing Steam

Posts 1–6 of 6 · Page 1 of 1
KI
kibbles18
help memory editing Steam
a Steam game i have has values that have different memory each time i restart, such as the ammo memory change from 2D036FE0 to 2D31C734
can u help me so i can hack it?
#1 · 15y ago
LI
lilneo
Use Cheat engine, search manually for the value, if it's green then it's an offset from a module. Double click the address in the list and a box will come up and say <module>.dll+<offset>
And then you can use c++ to find the address when you inject a dll.
If it's not green then you need to find the player pointer, if that's the case ask someone else.
~lilneo
#2 · 15y ago
KI
kibbles18
ok so i traced it back to the static address of server.dll+716A34.
how can i find server.dll value in c++?
#3 · 15y ago
Void
Void
Quote Originally Posted by kibbles18 View Post
ok so i traced it back to the static address of server.dll+716A34.
how can i find server.dll value in c++?
GetModuleHandle() If you have direct memory access. If not, use Module32First & Module32Next
#4 · 15y ago
KI
kibbles18
this is what i have in my CE table:
address of server.dll+716A34 (15CD6A34) that holds value 0x26BD1190
pointer to 26BD1958 (ammo) made with adding address 15CD6A34 (see above) and offsett 7c8.
how do i use this to get a static address that i can control the ammo with?
i try this code
Code:
#include <stdio.h>
#include <windows.h>
#include <iostream>
#include <iomanip>
using namespace std;

void getBaseAddy()
{
	DWORD baseAddy = (DWORD)GetModuleHandle("server.dll");
	DWORD ammoAddy = (DWORD)(baseAddy + 716274) + 1992;
}

BOOL WINAPI DllMain(HINSTANCE module, DWORD dwReason, LPVOID lpvReserved)
{
   if(dwReason == DLL_PROCESS_ATTACH)
   {
       CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)getBaseAddy, NULL, NULL, NULL);
   }
return TRUE;
}
#5 · edited 15y ago · 15y ago
LI
lilneo
http://www.mpgh.net/forum/31-c-c/220...retreiver.html
There ya go bro.
put in the module name and the offset and it returns the addy.
~lilneo
#6 · 15y ago
Posts 1–6 of 6 · Page 1 of 1

Post a Reply

Tags for this Thread

None