Tags
Creators
Details
0.3.1
Compatibility
Changes
[0.3.1] - 2025-08-31
Rebased to Meteor Client 1.21.8, Build #26.
Added
- Configuration in waypoints to allow them to auto-hide when the player gets in range.
- Automatic death waypoints now auto-hide when the player gets within 4 blocks.
Changed
- Updated some formatting in the changelog.
- Module tooltips now contain their hyphenated id.
- A 1 tick attack in
.inputwill now perform a punch rather than a dig.
.macro Command Overhaul
In the past, calling a macro from itself would cause a game crash.
To mitigate this, the .macro command now schedules macros to be run in the next tick.
As such, the syntax of the command has been overhauled:
.macro <name> | Schedules the given macro
.macro <name> <time> | Schedules the given macro after <time> duration
.macro clear | Clears all scheduled macros
.macro clear <name> | Clears the given macro
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:cFGzaOGg:j1RfATul"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:cFGzaOGg:j1RfATul"
}

