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 › Minecraft Hacks & Cheats › Minecraft Tutorials › [Tutorial]Become a MC Modder EASY [Part 2]

[Tutorial]Become a MC Modder EASY [Part 2]

Posts 1–13 of 13 · Page 1 of 1
CA
Cal
[Tutorial]Become a MC Modder EASY [Part 2]


If you are reading this i assume you have successfuly followed Become a Minecraft Modder

Now were going to make a harder mod. not to hard we like to keep it simple at first but still, ok follow the following steps, change whatever you want on the way.

Infomation
We will be making your player have godmode!

Instructions
Open Notepade++
Open your MCP (Minecraft COders Pack) Folder
Open your srs/Source colder and find EntityPlayer
Youll first see what he starts with, youll see Health, its set at the default 20, change it to something rediculas like 99999 and save it,
now scroll down to the respawn part, you see it setting your health to 20? change it to 9999 aswell, this will make respawn godemode, so if your on your old save and you want godmode just kill yourself and youll have it .
So heres what were changing
Code:
public EntityPlayer(World world)
    {
        super(world);
        inventory = new InventoryPlayer(this);
        field_9371_f = 0;
        score = 0;
        isSwinging = false;
        swingProgressInt = 0;
        damageRemainder = 0;
        fishEntity = null;
        inventorySlots = new CraftingInventoryPlayerCB(inventory, !world.multiplayerWorld);
        craftingInventory = inventorySlots;
        yOffset = 1.62F;
        ChunkCoordinates chunkcoordinates = world.getSpawnPoint();
        setLocationAndAngles((double)chunkcoordinates.x + 0.5D, chunkcoordinates.y + 1, (double)chunkcoordinates.z + 0.5D, 0.0F, 0.0F);
        health = 20;
        field_9351_C = "humanoid";
        field_9353_B = 180F;
        fireResistance = 20;
        texture = "/mob/char.png";
    }
To
Code:
public EntityPlayer(World world)
    {
        super(world);
        inventory = new InventoryPlayer(this);
        field_9371_f = 0;
        score = 0;
        isSwinging = false;
        swingProgressInt = 0;
        damageRemainder = 0;
        fishEntity = null;
        inventorySlots = new CraftingInventoryPlayerCB(inventory, !world.multiplayerWorld);
        craftingInventory = inventorySlots;
        yOffset = 1.62F;
        ChunkCoordinates chunkcoordinates = world.getSpawnPoint();
        setLocationAndAngles((double)chunkcoordinates.x + 0.5D, chunkcoordinates.y + 1, (double)chunkcoordinates.z + 0.5D, 0.0F, 0.0F);
        health = 9999;
        field_9351_C = "humanoid";
        field_9353_B = 180F;
        fireResistance = 20;
        texture = "/mob/char.png";
    }
And respawn from:
Code:
public void preparePlayerToSpawn()
    {
        yOffset = 1.62F;
        setSize(0.6F, 1.8F);
        super.preparePlayerToSpawn();
        health = 20;
        deathTime = 0;
    }
To
Code:
public void preparePlayerToSpawn()
    {
        yOffset = 1.62F;
        setSize(0.6F, 1.8F);
        super.preparePlayerToSpawn();
        health = 99999;
        deathTime = 0;
    }
Now Recompile with recompile.bat in your Minecraft Coders Pack folder.
Now edit the config file in the MCP/Config the .txt document and add what you modified, so we modified entityplayer so add that and save it
now start the reobfuscate and get the class files in the final_out folder
#1 · edited 15y ago · 15y ago
Jakob
Jakob
Niice tut man. very helpful. +1 for awesomeness.
#2 · 15y ago
CA
Cal
Thanks for the positive feedback.
#3 · 15y ago
Jakob
Jakob
All good. You deserve more credit. Plus, Im already waiting on [Part 3] haha :P
#4 · 15y ago
ElitePk
ElitePk
I was looking for that file name xD
#5 · 15y ago
CA
Cal
Oh cool.
Well i guess if someone wants it ill write it.
#6 · 15y ago
CA
Cal
Greeeeaaat, lol, now everyone is going to release modded EntityPLayer Shit.
#7 · 15y ago
Thunder
[MPGH]Thunder
I've already done it. Great tut tho
#8 · 15y ago
CA
Cal
So did i? its not abut doing it itts about learing to use Java and modding.
i made MineTopea with it.
#9 · 15y ago
KingDot
KingDot
Pretty nice tut.
#10 · 15y ago
CA
Cal
Thanks, ill be making video tutorials for you all aswell soon to come (In The next week)
#11 · 15y ago
Jakob
Jakob
Quote Originally Posted by MC Modder View Post
Thanks, ill be making video tutorials for you all aswell soon to come (In The next week)
dont use songs though because then apple users cant watch,
#12 · 15y ago
CA
Cal
Why would i add gay songs .
#13 · 15y ago
Posts 1–13 of 13 · Page 1 of 1

Post a Reply

Tags for this Thread

None