Tags
Creators
Details
Licensed MIT
Published last year
Updated 6 days ago
All versions
2.4.0-mc.1.21.11-alpha.2
Alpha
AbyssalLib 2.4.0-mc.1.21.11-alpha.22 weeks ago 9
Compatibility
Minecraft: Java Edition
1.21.11
Platforms
Folia
Paper
Changes
The API is now available on the maven central repository
New:
- Menu API (Useful for custom containers/crafting UI's as it handles item movement on its own)
- Config options to toggle Item Server-Side Translation Ticking, Item ticking, and Energy network, aswell as option to change delay of server-side translation ticking
- Placeholders for Permissions
abyssallib:player_has_permission:<permission>Checks if the player has the permission (Boolean)abyssallib:player_has_group:<group>Checks if the player belongs to a group (Boolean)abyssallib:player_groupsGets all the groups the player is in (List of String)abyssallib:player_group:<index>Gets the players group of a specific index from the sorted group listabyssallib:player_primary_groupGets the players group that has the highest weight (could be inconsistent if multiple groups use same weight and are highest)
Supplementary resources
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:ZbISgrYq:zlVFveEz"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:ZbISgrYq:zlVFveEz"
}

