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 › Combat Arms Hacks & Cheats › [Need Help] Multi-Pointers

[Need Help] Multi-Pointers

Posts 1–9 of 9 · Page 1 of 1
bartjr
bartjr
[Need Help] Multi-Pointers
Well I guess alot of you know about my new trainer and that im workin to fix it i got some of them working through single pointers but the others i can't get to work cause i need to make it with multi pointers i was wondering if anyone can tell me how to make it through the multi pointers and ill give +rep and thanks!

I already know how to make level 1 pointers
#1 · 18y ago
king.joker.9
king.joker.9
isnt there a patch tonight >.>
#2 · 18y ago
bartjr
bartjr
Quote Originally Posted by king.joker.9 View Post
isnt there a patch tonight >.>
nope i just checked the site
#3 · 18y ago
MA
Marsicano
Quote Originally Posted by bartjr View Post
Well I guess alot of you know about my new trainer and that im workin to fix it i got some of them working through single pointers but the others i can't get to work cause i need to make it with multi pointers i was wondering if anyone can tell me how to make it through the multi pointers and ill give +rep and thanks!

I already know how to make level 1 pointers
Step 8: Multilevel pointers:
This step will explain how to use multi-level pointers.
In step 6 you had a simple level-1 pointer, with the first address found already being the real base address.
This step however is a level-4 pointer. It has a pointer to a pointer to a pointer to a pointer to a pointer to the health.

You basicly do the same as in step 6. Find out what accesses the value, look at the instruction and what probably is
the base pointer value, and what is the offset, and already fill that in or write it down. But in this case the address
you'll find will also be a pointer. You just have to find out the pointer to that pointer exactly the same way as you did
with the value. Find out what accesses that address you found, look at the assembler instruction, note the probable
instruction and offset, and use that.
and continue till you can't get any further (usually when the base address is a static address, shown up as green)

Click Change Value to let the tutorial access the health.
If you think you've found the pointer path click Change Register. The pointers and value will then change and you'll
have 3 seconds to freeze the address to 5000

Extra: This problem can also be solved using a auto assembler script, or using the pointer scanner
Extra2: In some situations (like this) it is recommended to change ce's codefinder settings to Access violations when
encountering instructions like mov eax,[eax] since debugregisters show it AFTER it was changed, making it hard to
find out the the value of the pointer





Extra3: If you're still reading. You might notice that when looking at the assembler instructions that the pointer is
being read and filled out in the same codeblock. This doesn't always happen, but can be really usefull in finding a
pointer when debuggng is troublesome
#4 · 18y ago
king.joker.9
king.joker.9
bull sh** i use too go on the site everynight too check on updates never said a thing.. there too lazy dude they tel you when they patch when they have the patch going on.
#5 · 18y ago
bartjr
bartjr
Quote Originally Posted by Marsicano View Post
Step 8: Multilevel pointers:
This step will explain how to use multi-level pointers.
In step 6 you had a simple level-1 pointer, with the first address found already being the real base address.
This step however is a level-4 pointer. It has a pointer to a pointer to a pointer to a pointer to a pointer to the health.

You basicly do the same as in step 6. Find out what accesses the value, look at the instruction and what probably is
the base pointer value, and what is the offset, and already fill that in or write it down. But in this case the address
you'll find will also be a pointer. You just have to find out the pointer to that pointer exactly the same way as you did
with the value. Find out what accesses that address you found, look at the assembler instruction, note the probable
instruction and offset, and use that.
and continue till you can't get any further (usually when the base address is a static address, shown up as green)

Click Change Value to let the tutorial access the health.
If you think you've found the pointer path click Change Register. The pointers and value will then change and you'll
have 3 seconds to freeze the address to 5000

Extra: This problem can also be solved using a auto assembler script, or using the pointer scanner
Extra2: In some situations (like this) it is recommended to change ce's codefinder settings to Access violations when
encountering instructions like mov eax,[eax] since debugregisters show it AFTER it was changed, making it hard to
find out the the value of the pointer





Extra3: If you're still reading. You might notice that when looking at the assembler instructions that the pointer is
being read and filled out in the same codeblock. This doesn't always happen, but can be really usefull in finding a
pointer when debuggng is troublesome

yeah i already read that tut on cheat engine tutorial but its kinda confusing
#6 · 18y ago
jerry0
jerry0
if you are using CE, add a pointer twice, that means press the button twice. So it will look like this:
First row, address of second row, offset
Second row, address, offset.

[greyed out] [Offset2]
[pointer ] [Offset1]
#7 · 18y ago
MA
Marsicano
Quote Originally Posted by bartjr View Post
yeah i already read that tut on cheat engine tutorial but its kinda confusing
Posted this to ppl know what we are talking about =X

Quote Originally Posted by jerry0 View Post
if you are using CE, add a pointer twice, that means press the button twice. So it will look like this:
First row, address of second row, offset
Second row, address, offset.

[greyed out] [Offset2]
[pointer ] [Offset1]
I don't get it =X
#8 · 18y ago
bartjr
bartjr
Quote Originally Posted by jerry0 View Post
if you are using CE, add a pointer twice, that means press the button twice. So it will look like this:
First row, address of second row, offset
Second row, address, offset.

[greyed out] [Offset2]
[pointer ] [Offset1]
nope doesnt work cause with the multi-pointers u gotta find the offsets a different way
#9 · 18y ago
Posts 1–9 of 9 · Page 1 of 1

Post a Reply

Similar Threads

  • [Need Help] Enemy PointerBy jd96 in Combat Arms EU Hack Coding/Source Code
    6Last post 15y ago
  • Need help with multi clientBy anhhao2185 in Vindictus Help
    13Last post 15y ago
  • need help with multi-client+bunnyglitch NABy fishy8158 in Dragon Nest Help
    8Last post 15y ago
  • need help with moddingBy BayBee Alyn in Combat Arms Help
    0Last post 15y ago
  • Playing Warrock In Multi Windows Need HelpBy Shadowguild in WarRock - International Hacks
    27Last post 20y ago

Tags for this Thread

#multipointers