Fill out the attendance form at acm.mines.edu/attend
Join our Discord
Join our Mailing List
Let’s jump right in!
Install Minecraft Forge, 1.19 - 4.1.10 - MDK
WARNING: Forge uses a link redirect site that basically just hosts a ton of “ads” that are viruses. DO NOT click anything on this site, and hit “SKIP AD” in the top right hand of the page.
https://files.minecraftforge.net/net/minecraftforge/forge/index_1.19.html
Mod Assets
Download our mod assets:
Forge & How We Mod
Modding is a term for “modifying” games, such as adding new items, blocks, etc. to Minecraft.
We can do this using a 3rd party software (recognized but not developed by Mojang) called Minecraft Forge.
We won’t teach how to deploy today, but essentially we would export to jar files if we wanted to distribute our mod.
Local Setup
Unzip/extract the forge zip that installed.
Initial Setup
For initial setups, run the Gradle task or command:
./gradlew genIntellijRuns OR ./gradlew genEclipseRuns
To run the client and test the mod, run:
./gradlew runClient
Adding an Item
Making textures: https://www.gimp.org/downloads/
Item making process:
Read more: https://moddingtutorials.org/basic-items
public static final RegistryObject<Item> EXAMPLE = ITEMS.register("example", () -> new Item(new Item.Properties().tab(CreativeModeTab.TAB_COMBAT)));
Adding a Block
Making textures: https://www.gimp.org/downloads/
Block making process:
Read more: https://moddingtutorials.org/basic-blocks