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# Programming › MInecraft Base Address and Pointer Cheat Engine

MInecraft Base Address and Pointer Cheat Engine

Posts 1–10 of 10 · Page 1 of 1
PR
Programmer213
MInecraft Base Address and Pointer Cheat Engine
Hi,
After I "hacked" Assault Cube sucessfully, I want to try to hack my favourite game: Minecraft.
I went so:
First I scan for 20(max health). After that, i hurt me so i had 18 and scanned once again(for 18).
Then I hurt me again so i had just 16 and scanned for that.
Finally, I had 1 Adress and if i change the value to 20, i have 20 life.
I tried to find out what writes to this address.
I got this result:
mov (ecx + ebx), eax

i take ebx as the offset(1B8)
and scan for the value(hex) ecx.
After that, i got thousands of adresses, but which on is the right?
I tried it with the first, and it functioned when i add a new pointer.
But when I find out what accesses to this pointer, and close that, The Pointer isnt pointing my life it is pointing ??
Someon can please help me?
#1 · 13y ago
Pingo
Pingo
I don't think you will beable to get a static pointer for that.
You might need to go another route.
Go to CE and scan this array of bytes 8b??a8010000??bc
Let me know if you get a result.
#2 · 13y ago
Magnificient
Magnificient
Either use the pointer scanner in Cheat Engine itself, or use Olly to backtrace until you get a working pointer. I made a tutorial some time ago showing a method to get a valid working pointer for game by simply backtracing in Olly. Keep in mind, it'll require more effort on the latest games.
#3 · 13y ago
PR
Programmer213
@Magnificient, I tried the pointer scan from CE and let it scan 4hours, but then i abbort, because he search and search... @Pingo, When I search for the value as an array of bytes, I get nothing.
Someon has another idea?
#4 · 13y ago
Pingo
Pingo
Just need to find another pattern. I'm using a lower version so it might be different.

The script im using doesn't write to the same opcode you're looking for.
mov [ecx + ebx], eax is shared so i went with something unique to health.

Heres my AA script but the pattern isn't good for you.
Code:
[Enable]
label(Health)
registersymbol(Health)
aobscan(Address,8b??a8010000??bc)
alloc(Cave,128)

Address:
Health:
jmp Cave
db 90

Cave:
mov [esi+1A8],14
mov edi,[esi+000001A8]
jmp Health+6

[Disable]
Health:
mov edi,[esi+000001A8]
dealloc(Cave)
unregistersymbol(Health)
#5 · 13y ago
PR
Programmer213
sorry, but could you explain that another way, because i cant understand that.
and thx but the code is useless for me, because I program in C#.
I dont need codes. I have the code i just want to know, why I cant find the offsets and the baseaddress like in assault cube and how.
sorry for my bad english, I live in germany
#6 · 13y ago
WhiteHat PH
WhiteHat PH
@Programmer213 #request for warrock...
#7 · 13y ago
PR
Programmer213
why you say request for warrock now?
#8 · 13y ago
FingerLickin'Good
FingerLickin'Good
Using a debugger/disassembler
#9 · 13y ago
BindOnAccount
BindOnAccount
I wish I could read bad english :/
#10 · 13y ago
Posts 1–10 of 10 · Page 1 of 1

Post a Reply

Similar Threads

  • How To Find Base Address and pointersBy nwouh in Soldier Front General
    1Last post 13y ago
  • Assault Cube CT Base Address and OffSetsBy brassh in Other First Person Shooter Hacks
    2Last post 13y ago
  • How to Speed And Superjump (Cheat engine)By wongjeffry in Mission Against Terror Hacks & Cheats
    30Last post 13y ago
  • Memory addresses and pointers -.- FMLBy PsychicSounds in General Game Hacking
    0Last post 15y ago
  • no fall damage addresse and pointer or valueBy 123456789987654321 in WarRock - International Hacks
    2Last post 19y ago

Tags for this Thread

#address#base#minecraft#pointers#programming