Anonymous user
Modding: Difference between revisions
m
Added BTA instances and Kotlin example mod links
imported>Ambos (Created the modding guide) |
imported>Ambos m (Added BTA instances and Kotlin example mod links) |
||
Line 11: | Line 11: | ||
We are going to use Babric, which is a modification of Fabric for Minecraft Beta 1.7.3. | We are going to use Babric, which is a modification of Fabric for Minecraft Beta 1.7.3. | ||
# Download the Babric MultiMC instance for [https://cdn.discordapp.com/attachments/1046707025234640956/1137706168005963806/BTA_1.7.7.0_Babric.zip BTA! 1.7. | # Download the Babric MultiMC instance for [https://github.com/Turnip-Labs/babric-instance-repo/releases/tag/v1.7.7.0 BTA! 1.7.7.0] ([https://cdn.discordapp.com/attachments/1046707025234640956/1137706168005963806/BTA_1.7.7.0_Babric.zip archive]) or [https://github.com/Turnip-Labs/babric-instance-repo/releases/tag/v1.7.6.2_02 BTA! 1.7.6.2_02] ([https://drive.google.com/file/d/1d_VocjEW2ItjIzbUAsrX_pBThH_zkZAn/view archive]) | ||
# [https://github.com/MultiMC/Launcher/wiki/Import-Instance Import the instance] into your launcher | # [https://github.com/MultiMC/Launcher/wiki/Import-Instance Import the instance] into your launcher | ||
Line 28: | Line 28: | ||
=== Set up the development environment === | === Set up the development environment === | ||
# Download or clone the [https://github.com/Turnip-Labs/bta-example-mod BTA Babric Minimal Mod] and put it somewhere: <code>git clone <nowiki>https://github.com/Turnip-Labs/bta-minimal-mod.git</nowiki></code> | # Download or clone the [https://github.com/Turnip-Labs/bta-example-mod BTA Babric Minimal Mod] (or [https://github.com/Turnip-Labs/bta-example-mod-kotlin BTA Example Mod Kotlin]) and put it somewhere: <code>git clone <nowiki>https://github.com/Turnip-Labs/bta-minimal-mod.git</nowiki></code> | ||
# Import the project in IntelliJ IDEA, close it and open it again. | # Import the project in IntelliJ IDEA, close it and open it again. | ||
# Create a new run configuration by going in <code>Run > Edit Configurations</code>. Then click on the plus icon and select Gradle. In the <code>Tasks and Arguments</code> field enter <code>build</code>. Running it will build your finished jar files and put them in <code>build/libs/</code> | # Create a new run configuration by going in <code>Run > Edit Configurations</code>. Then click on the plus icon and select Gradle. In the <code>Tasks and Arguments</code> field enter <code>build</code>. Running it will build your finished jar files and put them in <code>build/libs/</code> |