MC Tutorial!
No idea how to make a mod? We got you covered!
No idea how to make a mod? We got you covered!
First, we will need a powerful IDE: IntellIJ Idea Community Edition, be sure to scroll down and download Community Edition, it's free!
After it's downloaded, open up the application, and click on the "Plugins" on the left bar.
Search for "Minecraft Development", and click install.
We also need to setup time tracking: Search "Wakatime" and click intall. After that, click Restart IDE.
Now go connect to hackatime and setup Hackatime following the instructions on the website.
It's now time to create a new project! Click on the "New Project" button, and select "Minecraft" on the left side then choose JDK 21. (If JDK 21 isn't there, download it here!)
Change the name and ids to whatever you like (scroll down and change group id too), then select "Fabric" in the "Templates". Your command creation dialogue should look like this:
Click create and you have setup the base of your fabric project!
PS: If you see the error "Could not resolve net.fabricmc:fabric-loom:1.10-SNAPSHOT.", go to the file gradle > wrapper > gradle-wrapper.properties and change the distribution URL to "https\://services.gradle.org/distributions/gradle-8.14-milestone-4-bin.zip".
To develop Minecraft plugins, we are going to use the Fabric mod loader. If there is something your confused about, go check their docs!
Now, lets first launch the game! You don't need a Minecraft account to do this: You can find the launch profiles in the top-right corner of the window. Click the dropdown menu to see the available launch profiles.
There should be a client and server profile, click on the green play button on the line with "Minecraft Client" written on it:
Your game should launch! Now everytime you make changes in your code and want to try it out, relaunch Minecraft.
Consult the Fabric tutorial! It is awesomely written. You can add blocks, play sounds, add entities and more!
Want to change some existing Minecraft behaviour? Try using Mixins
Need automatic data generation? Datagen has you covered!