Template for making Babric mods for BTA!
Note: DO NOT fork this repository unless you want to contribute!
- JDK for Java 17 (Eclipse Temurin recommended)
- IntelliJ IDEA
- Minecraft Development plugin (Optional, but highly recommended)
-
Click the
Use this templatebutton on this repo's page above. ChooseCreate a new respository, you will be redirected to a new page. Enter your repo's name and description, and hitCreate repository.
To get your project, open IntelliJ IDEA and clickGet from VCS. SelectRepository URLand enter your repo's url -
After the project has finished importing, close it and open it again.
If that does not work, open the right sidebar withGradleon it, openTasks>fabricand runideaSyncTask. -
Create a new run configuration by going in
Run > Edit Configurations.
Then click on the plus icon and select Gradle. In theTasks and Argumentsfield enterbuild.
Running it will build your finished jar files and put them inbuild/libs/. -
While in the same place, select the Client and Server run configurations and edit the VM options under the SDK selection.
Click the double arrow icon to expand the list, and append
-Dfabric.gameVersion=1.7.7.0to the end. -
Lastly, open
File>Settingsand head toBuild, Execution, Development>Build Tools>Gradle.
Make sureBuild and run usingandRun tests usingis set toGradle. -
Done! Now, all that's left is to change every mention of
examplemodandturniplabsto your own mod id and mod group, respectively. Happy modding!

