
Stacc API - Expanding Item Stacking Capabilities
Important: Stacc is purely an API mod and does not add any functionality to the game on its own!
This mod provides developers with tools to create items with expanded stack sizes that significantly exceed the standard 64 units. It includes a specialized display system for large numbers (over 1000) that prevents text from overlapping adjacent inventory slots, and also fixes various errors related to processing large stacks.
A key feature of Stacc is the implementation of a safe serialization scheme for large stacks, which ensures partial world preservation when the mod is removed - although many items may be lost, the world itself remains accessible.
To connect the API, use the following settings in Gradle:
repositories {
maven {
url = uri("https://storage.googleapis.com/devan-maven/")
// for versions lower than 1.2.0
// url = uri("https://raw.githubusercontent.com/Devan-Kerman/Devan-Repo/master/")
}
}
dependencies {
// no API exists (except for render handler), just set maxCount in Item$Settings to values over 64
modRuntime("net.devtech:Stacc:XXX")
}