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 › [Video 2]Minecraft Coders Pack Tutorial 2:Adding a Crafting Recipe

[Video 2]Minecraft Coders Pack Tutorial 2:Adding a Crafting Recipe

Posts 1–15 of 19 · Page 1 of 2
CA
Cal
[Video 2]Minecraft Coders Pack Tutorial 2:Adding a Crafting Recipe
@jailbroken671
ad this to the sticky



Enjoy. i was DAMN sleepy.
#1 · 15y ago
Thunder
[MPGH]Thunder
1. Added your MSN
2. You really need to stop doing drugs.
3. Now I know some basic of this too

Thanks
#2 · 15y ago
CA
Cal
Quote Originally Posted by Thunder View Post
1. Added your MSN
2. You really need to stop doing drugs.
3. Now I know some basic of this too

Thanks
Next one will be making mobs.
#3 · 15y ago
JA
Jailbroken671
sticky not needed
just edit your first post with a link to this post
#4 · 15y ago
Fogest
Fogest
@Jailbroken671 please add this into this thread:
http://www.mpgh.net/forum/422-minecr...tutorials.html
#5 · 15y ago
CA
Cal
Quote Originally Posted by Jailbroken671 View Post
sticky not needed
just edit your first post with a link to this post
@Jailbroken671
i ment add it to the sticky -.-
#6 · 15y ago
Thane.
Thane.
This was actually useful
#7 · 15y ago
Physcadelic
Physcadelic
Quote Originally Posted by MC Modder View Post


@Jailbroken671
i ment add it to the sticky -.-
One video doesn't deserve a stick Just put it in the compilation of tutorials.
#8 · 15y ago
Son Goku
Son Goku
Could you upload a screenshot version? not everyone can watch youtube because of there download limit.
#9 · 15y ago
Physcadelic
Physcadelic
Quote Originally Posted by TomAllMighty View Post
Could you upload a screenshot version? not everyone can watch youtube because of there download limit.
1. Put bin and resources in jars folder
2. Run Decompile.bat
3. Navigate to your sources and find CraftingManager.java
4. Find a declaration that looks similar to
Code:
});
        addRecipe(new ItemStack(Block.torchWood, 4), new Object[] {
            "X", "#", Character.valueOf('X'), Item.coal, Character.valueOf('#'), Item.stick
5. Not code as much as it is logic. Edit the variables appropriately. For example, changing it to
Code:
});
        addRecipe(new ItemStack(Block.torchWood, 4), new Object[] {
            "X", "#", Character.valueOf('X'), Item.reed, Character.valueOf('#'), Item.stick
Will allow you to make torches using reeds instead of coal.

6. Add 'CraftingManager' to client_obfuscation.txt in your conf. folder
7. Run Recompile.bat
8. Run reobf.bat
9. Put the class file from final_out\minecraft into Minecraft.jar (delete META)
10. You're done. Congrats.
#10 · 15y ago
Son Goku
Son Goku
Quote Originally Posted by Physcadelic View Post


1. Put bin and resources in jars folder
2. Run Decompile.bat
3. Navigate to your sources and find CraftingManager.java
4. Find a declaration that looks similar to
Code:
});
        addRecipe(new ItemStack(Block.torchWood, 4), new Object[] {
            "X", "#", Character.valueOf('X'), Item.coal, Character.valueOf('#'), Item.stick
5. Not code as much as it is logic. Edit the variables appropriately. For example, changing it to
Code:
});
        addRecipe(new ItemStack(Block.torchWood, 4), new Object[] {
            "X", "#", Character.valueOf('X'), Item.reed, Character.valueOf('#'), Item.stick
Will allow you to make torches using reeds instead of coal.

6. Add 'CraftingManager' to client_obfuscation.txt in your conf. folder
7. Run Recompile.bat
8. Run reobf.bat
9. Put the class file from final_out\minecraft into Minecraft.jar (delete META)
10. You're done. Congrats.
Thanks, i saw this with Mcp but I did not quite get it. (Thanked and +1)
#11 · 15y ago
CA
Cal
Quote Originally Posted by Physcadelic View Post


1. Put bin and resources in jars folder
2. Run Decompile.bat
3. Navigate to your sources and find CraftingManager.java
4. Find a declaration that looks similar to
Code:
});
        addRecipe(new ItemStack(Block.torchWood, 4), new Object[] {
            "X", "#", Character.valueOf('X'), Item.coal, Character.valueOf('#'), Item.stick
5. Not code as much as it is logic. Edit the variables appropriately. For example, changing it to
Code:
});
        addRecipe(new ItemStack(Block.torchWood, 4), new Object[] {
            "X", "#", Character.valueOf('X'), Item.reed, Character.valueOf('#'), Item.stick
Will allow you to make torches using reeds instead of coal.

6. Add 'CraftingManager' to client_obfuscation.txt in your conf. folder
7. Run Recompile.bat
8. Run reobf.bat
9. Put the class file from final_out\minecraft into Minecraft.jar (delete META)
10. You're done. Congrats.
Stealing my thunder? Orly?
#12 · 15y ago
FlaVour
FlaVour
Thanks , great job
#13 · 15y ago
CA
Cal
Thanks alot for feedback
i love a comment people!
#14 · 15y ago
FU
FullStatic
Sexy Video sexy
#15 · 15y ago
Posts 1–15 of 19 · Page 1 of 2

Post a Reply

Tags for this Thread

None