Tags
Creators
Details
Licensed GPL-3.0-only
Published 2 years ago
Updated 7 months ago
All versions
1.0.0-alpha10
Alpha
Conium 1.0.0-alpha10last year 128
Compatibility
Minecraft: Java Edition
1.21.4
Platform
Fabric
Supported environments
Client and server
Required content
Changes
Conium event
- Renamed events, remove suffixes 'event' in the events list.
- Move more event trigger to intermediary.
- Add 'attachPreparation' in event context, used to pre-vary raw inputted args.
- Add dynamic register APIs for item, block and entity.
- Add more minecraft class import.
- Clear all event subscribes on reloading data packet
New event support
Add events support:
- ITEM_USE
- ITEM_USED
- RECEIVE_CHUNK
- RECEIVED_CHUNK
Bedrock event
- Add 'dimension' field to bedrock entity. (
Entity#dimension) - Use 'runCommand' to execute 'runCommandAsync' method. (
Entity.runCommandAsync) - Let bedrock entity can use raycast to get a block hit. (
Entity.getBlockFromViewDirection) - Make bedrock world(dimension) able to create the explosions. (
Dimension.createExplosion) - Renamed 'BedrockWorld' to correctly name 'BedrockDimension' to prevent ambiguity.
New event support
Add event support:
- itemUseBeforeEvent
- itemUseAfterEvent
Configuration
Add config file config/conium.json used to toggle conium features, currently toggleable: enable_debug and enable_bedrock_script.
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:i7S4uT5P:5OZ5ORV5"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:i7S4uT5P:5OZ5ORV5"
}


