
Forge Modding Tutorials
This site will teach you how to make Minecraft mods for the Forge mod loader. I make these because I was frustrated by the lack of documentation and useable tutorials for Forge.
Introduction to Modding - Modding Tutorials
Getting Started Congratulations! Now you're ready to make your own minecraft mod. Make sure you learn the Java programming language. This is what you will be writing in to make your …
Advanced Items - Modding Tutorials
A tutorial on making items with unique custom behaviours. We will make a food that gives a potion effect, a furnace fuel and an item that teleports you forward when right clicked.
Basic Blocks - Modding Tutorials
In this tutorial we will register a simple block with a texture and a loot table. It will be a similar process to basic items.
Advanced Blocks - Modding Tutorials
A tutorial on making a block with custom behaviour. It will react to being right clicked, explosions, random ticks and even act as soil for crops!
World Gen - Modding Tutorials
Since 1.16, the way minecraft handles world generation has been shifting towards being based on json files in data packs rather than making you write code. Eventually I'd like to write my own …
Basic Items - Modding Tutorials
In this tutorial we will make a simple item with a name and a texture. We will also make a new creative tab to put items in.
Recipes - Modding Tutorials
In this tutorial we learn about the json recipe formats used by crafting tables, furnaces, smithing tables and stone cutters. We also use an event handler to manipulate the anvil's outputs.
Environment Setup - Modding Tutorials
How to setup a forge development environment for 1.19.2 with the official mappings. We download java 17, forge and IntelliJ. We also rename our main package and class and update …
Mixins - Modding Tutorials
Although mixins are more versatile than events, they can be a bit tricky to get right and are generally worse for mod compatibility. You should almost always prefer using the Forge event …