Tags
Creators
Details
All versions
3.2
Release
3.2 for Fabric 1.20.13 years ago 301
Compatibility
Minecraft: Java Edition
1.20.1
Platform
Fabric
Supported environments
Client-side
Required content
Changes
Updates in Minescript 3.2
- Support for Minecraft versions up to 1.20.2
- Fix Forge bug where Minescript loop could run on the wrong thread and crash, and improve performance (especially with Fabric) by setting the default for
minescript_ticks_per_cycleto run every tick rather than once every 3 ticks (79613b1) - Add script function
screen_name()for getting the name of the currently displayed GUI screen, if any (e40d52a) - Introduce
ChatEventListenerPython class for more user-friendly handling of chat events (83dd4aa) - Support propagation of Java exceptions to Python (2c8692d)
- Support for listening for keyboard events with
KeyEventListenerPython class (b0163d3) - Fix
player_inventory_slot_to_hotbar()"ghost items" in survival mode (c63fd27, 49ee542)
See detailed changelog.
Special thanks to TimGeel1998 and MCT32 for help debugging and fixing an issue with ghost items.
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:KcpXWngB:ZamBseLc"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:KcpXWngB:ZamBseLc"
}

