Skip to main content

More Ouputs API

VERY BIG DISCLAIMER: This tutorial was written for Minecraft 1.20.4, ANY VERSION THAT IS NEWER WILL NOT WORK. Im currently working on making a 1.20.5+ tutorial, I don't know how long this will take, stay tuned and read well.

Version scheme for More Outputs API

Note: it isnt worth backporting to version prior to 1.18 and certainly not prior to 1.14 so those versions won't be backported. Where x stands for the update of the mod & y stands for minecraft version suffix like 1.20.^^1^^. Note that z only appears when there is an actual bugfix, otherwise it will be for example 2.x.y.

Minecraft VersionMod VersionMod LoaderStatus
< 1.18-Fabricskipped
1.18.x0.2.y.zFabricdone
1.19.x0.5.y.zFabricdone
1.20.x1.x.y.zFabricdone
1.21.x2.x.y.zFabriccurrent version

Modrinth CurseForge

Extra info on the mod such as download count can be found here

Getting Started

In your build.gradle
// Should be in the TOP repositories block
repositories {
mavenCentral()

maven {
url = ("https://repo.repsy.io/mvn/scaredrabbit/scaredsmods")
}
}
//Dependencies block
modImplementation "io.github.scaredsmods.moreoutputsapi:MoreOutputsAPI:${project.moapi_version}"
//OR
modApi "io.github.scaredsmods.moreoutputsapi:MoreOutputsAPI:${project.moapi_version}"
moapi_version = VERSION

VERSION can either be found on repsy, curseforge or modrinth.

Usage

I would assume that you already know most of the things we are about to do, but for those that don't know, here is the tutorial!