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 › Pointers and Offsets

Pointers and Offsets

Posts 1–9 of 9 · Page 1 of 1
aanthonyz
aanthonyz
Pointers and Offsets
If I find them, how do I implement them into my C++ code?
It sounds like a stupid question but im serious I wanna learn.

Also what is the difference between a pointer and an offset?
#1 · 15y ago
J
J
Like so:

Say you have a multi level pointer.

Using this as an example:

Code:
DWORD Address = *(DWORD*)(*(DWORD*)(*(DWORD*)(*(DWORD*)(*(DWORD*)(ModuleBase+Pointer)+Offset1)+Offset2)+Offset3)+Offset4)+Offset5;
Say you wanted to modify it.

For this example, I'll be casting it to an int:

Code:
*(int*)Address = 99;
#2 · 15y ago
'Bruno
'Bruno
Have you ever worked with pointers without the objective of hacking? If not i advice you to. Because if you don't know what a pointer is (The most important thing in Unamanged Code IMO), you are doing it wrong.
#3 · 15y ago
aanthonyz
aanthonyz
Well, I have worked with pointers before. My questions is how do I implement it into a hack? I mean a simple hack to not something too complex.

Maybe like recording over the score in a pinball or minesweeper game.
#4 · 15y ago
'Bruno
'Bruno
Quote Originally Posted by aanthonyz View Post
Well, I have worked with pointers before. My questions is how do I implement it into a hack? I mean a simple hack to not something too complex.

Maybe like recording over the score in a pinball or minesweeper game.
a pointer points to somewhere in the memory. If you manage to find what place in memory has the score (for example), you point to that place, and change its content (the score).
#5 · 15y ago
aanthonyz
aanthonyz
I know that, I mean what would the actual code be?
#6 · 15y ago
Void
Void
Quote Originally Posted by aanthonyz View Post
I know that, I mean what would the actual code be?
You'd be able to answer this yourself if you knew how pointers work.
#7 · 15y ago
aanthonyz
aanthonyz
Oh. I guess I dont know sorry for the trouble.
#8 · 15y ago
bkbatman
bkbatman
here u go buddy
[url]http://www.free
webs
.com/unrealapps/tutorials/cplusplus/trainer.html



this tutorial was not made by me it was made by unreal pwner
#9 · edited 15y ago · 15y ago
Posts 1–9 of 9 · Page 1 of 1

Post a Reply

Tags for this Thread

None