Babric example mod for BTA
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
azurelmao 0b3283e764
Clarification + no longer needed point
1 year ago
.github/workflows Autobuild, fetch client jar from Mojang 2 years ago
gradle/wrapper Initial commit 2 years ago
src/main Update dependencies 2 years ago
.gitignore Update to BTA 1.7.7.0! 1 year ago
LICENSE Initial commit 2 years ago
README.md Clarification + no longer needed point 1 year ago
build.gradle Update build.gradle 1 year ago
gradle.properties Update gradle.properties 1 year ago
gradlew Initial commit 2 years ago
gradlew.bat Initial commit 2 years ago
settings.gradle Initial commit 2 years ago

README.md

Example Mod

Template for making Babric mods for BTA!

Prerequisites

  • JDK for Java 17 (Eclipse Temurin recommended)
  • IntelliJ IDEA
  • Minecraft Development plugin (Optional, but highly recommended)

Setup instructions

  1. Download or clone this repository and put it somewhere.
git clone https://github.com/Turnip-Labs/bta-example-mod.git
  1. Import the project in IntelliJ IDEA, close it and open it again.

  2. Create a new run configuration by going in Run > Edit Configurations
    Then click on the plus icon and select Gradle. In the Tasks and Arguments field enter build
    Running it will build your finished jar files and put them in build/libs/

  3. Open File > Settings and head to Build, Execution, Development > Build Tools > Gradle
    Make sure Build and run using and Run tests using is set to Gradle

  4. Make sure your Client and Server run configurations have -Dfabric.gameVersion=1.7.7.0 in VM options!

  5. Done! Now, all that's left is to change every mention of examplemod and turniplabs to your own mod id and mod group, respectively. Happy modding!