HomeJavaModsBoxLib
BoxLib
ModsJava

BoxLib

by Boxadactle · on CurseForge

A client-side library mod with tons of features to do all the heavy lifting for all client-side mod developers.

Which build do you need?

This mod ships a separate file for every mod loader and every version of the game. Pick both, then download — the wrong build installs fine and then does nothing in the game.

Mod loader

Minecraft version

⬇ Download for 1.21.11 · Fabric⬇ Download for 1.21.9–1.21.10 · Fabric⬇ Download for 1.21.6–1.21.8 · Fabric⬇ Download for 1.21.5 · Fabric⬇ Download for 1.21.4 · Fabric⬇ Download for 1.21.2–1.21.3 · Fabric⬇ Download for 1.21–1.21.1 · Fabric⬇ Download for 1.20.5–1.20.6 · Fabric⬇ Download for 1.20.3–1.20.4 · Fabric⬇ Download for 1.21.11 · Forge⬇ Download for 1.21.9–1.21.10 · Forge⬇ Download for 1.21.6–1.21.8 · Forge⬇ Download for 1.21.5 · Forge⬇ Download for 1.21.4 · Forge⬇ Download for 1.21.2–1.21.3 · Forge⬇ Download for 1.21–1.21.1 · Forge⬇ Download for 1.20.5–1.20.6 · Forge⬇ Download for 1.20.4 · Forge⬇ Download for 1.21.11 · Quilt⬇ Download for 1.21.9–1.21.10 · Quilt⬇ Download for 1.21.6–1.21.8 · Quilt⬇ Download for 1.21.5 · Quilt⬇ Download for 1.21.4 · Quilt⬇ Download for 1.21.2–1.21.3 · Quilt⬇ Download for 1.21–1.21.1 · Quilt⬇ Download for 1.20.5–1.20.6 · Quilt⬇ Download for 1.20.4 · Quilt⬇ Download for 1.21.11 · NeoForge⬇ Download for 1.21.9–1.21.10 · NeoForge⬇ Download for 1.21.6–1.21.8 · NeoForge⬇ Download for 1.21.5 · NeoForge⬇ Download for 1.21.4 · NeoForge⬇ Download for 1.21.2–1.21.3 · NeoForge⬇ Download for 1.21–1.21.1 · NeoForge⬇ Download for 1.20.5–1.20.6 · NeoForge
I don't know my version or loader
Open the Minecraft launcher and look at the profile you play on — it names both, like fabric-loader-1.21.4. The version also shows in the bottom-right corner of the game's main menu.
No loader in the profile name? Then it's plain Minecraft, and these mods won't run — you need Fabric or NeoForge installed first.

BoxLib

The most basic client-side library mod.

BoxLib is a library mod containing shared code used in Boxadactle's client mods. It is designed to be lightweight and easy to use, with a focus on providing utilities and tools that are commonly used in client-side mods.

Library

Features

Dependents

BoxLib is required by all of the following mods:

If you have trouble finding the required version of BoxLib for a specific mod, just download the latest version of BoxLib for the Minecraft version you are using.

Usage

If you would like to use this library, it is published on my maven repository: https://maven.boxadactle.dev

Please DO NOT use BoxLib for server mods, it's been specifically written for Client mods.

Setup with Fabric

build.gradle:

repositories {
    maven { url = "https://maven.boxadactle.dev/releases" }
}

dependencies {
    [...]

    modImplementation("dev.boxadactle.boxlib:Boxlib-fabric:VERSION")
}

Make sure to replace VERSION with the correct version of each mod

Setup with NeoForge

build.gradle

repositories {
    maven { url = "https://maven.boxadactle.dev/releases" }
}

dependencies {
    [...]

    modImplementation("dev.boxadactle.boxlib:Boxlib-neoforge:VERSION")
}

Make sure to replace VERSION with the correct version of each mod

Setup with Architectury

build.gradle

repositories {
    maven { url = "https://maven.boxadactle.dev/releases" }
}

dependencies {
    [...]

    modCompileOnlyApi("dev.boxadactle:Boxlib-common:VERSION")
}

Make sure to replace VERSION with the correct version of each mod

Setup with Forge

build.gradle:

jarJar.enable()

repositories {
    maven { url = "https://maven.boxadactle.dev/releases" }
}

dependencies {
    [...]

    implementation fg.deobf("dev.boxadactle.boxlib:BoxLib-Forge:VERSION")
}

Make sure to replace VERSION with the correct version of each mod

Verified by MCModsHub

These come from our own check of the pack file, not from the source page.

Explore more