Tags
Creators
Details
Licensed LGPL-3.0-or-later
Published 3 years ago
Updated 2 months ago
All versions
1.0.0-mc1.20.1
Release
1.0.0-mc1.20.13 years ago 225
Uploaded by
Compatibility
Minecraft: Java Edition
1.20.1
Platforms
Fabric
Quilt
Supported environments
Client and server
Changes
Version 1.0.0-mc1.20.1:
- Updated to MC 1.20.1
Additions
- Conditional choices !
- A dialogue choice can require an arbitrary condition in the form of a JSON predicate
- You can make it so that, when a choice is unavailable, it displays as either grayed out or hidden entirely
- Grayed out choices display a customizable explanation when hovered
- Conditions are refreshed every tick while a dialogue is active
- Blabber will warn you in the logs at initialization if a dialogue has a risk of leaving a player without choices
- You can now see a little arrow icon next to the currently selected choice
- This icon gets replaced with a lock when the choice is unavailable
- If despite all validation a player ends up on a dialogue screen with no choice available, they will now see an "escape hatch" choice suggesting they report the issue
Changes
- BREAKING : Dialogues are now loaded from
data/<namespace>/blabber/dialogues/instead ofdata/<namespace>/blabber_dialogues/ - BREAKING (for modders) : The maven group and package are now
org.ladysnakeinstead ofio.github.ladysnake
Mod Interactions
- REI and EMI no longer appear on the dialogue screen
see full changelog here
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:2oRMVFgd:S1pnsmDT"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:2oRMVFgd:S1pnsmDT"
}

