Skip to content
 
 

Repository files navigation

Skyblock API

Version

A collection of APIs for interacting with Hypixel SkyBlock.

Using the Library

Hosted on:

maven("https://maven.teamresourceful.com/repository/maven-public/")

In Cloche:

Cloche automatically handles modloader and minecraft version, which is why you don't need to specify them here.

dependencies {
    include("tech.thatgravyboat:skyblock-api:<version>") { isTransitive = false }
}

Outside Cloche:

dependencies {
    val clocheAction: Action<ExternalModuleDependency> = Action {
        attributes {
            attribute(Attribute.of("earth.terrarium.cloche.modLoader", String::class.java), "fabric")
            attribute(Attribute.of("earth.terrarium.cloche.minecraftVersion", String::class.java), "<minecraft_version>")
        }
    }
    modImplementation("me.owdding:item-data-fixer:1.0.3", clocheAction)
    modImplementation("tech.thatgravyboat:skyblock-api:<version>") {
        exclude("me.owdding")
        clocheAction.execute(this)
    }
    include("tech.thatgravyboat:skyblock-api:<version>", clocheAction)
}

<minecraft_version> is:

  • 1.21.5 for 1.21.5
  • 1.21.8 for 1.21.6-1.21.8
  • 1.21.9 for 1.21.9-1.21.10

Major Change Logs

  • v3.0.0: Update to 1.21.9/1.21.10
  • v2.3.0: Switch to kotlin.time vs kotlinx.datetime, required because of fabric kotlin version update.
  • v2.0.0: Move to multi-version
  • v1.0.0: Initial release

About

A library that contains APIs for various things on Hypixel SkyBlock

Resources

Stars

Watchers

Forks

Used by

Contributors

Languages