1.0.0
Compatibility
Changes
Central Waypoints
Global shared waypoints for Fabric servers on Minecraft 26.1.2.
Players can create, view, rename, and remove named waypoints that are visible to everyone. Players can also request a waypoint compass item and get live coordinate feedback in the actionbar while holding it.
Commands
/cwaypoint add <name>- Saves your current position and dimension as a global waypoint.
/cwaypoint set <name> <x> <y> <z>- Creates or updates a waypoint to the specified coordinates in your current dimension.
/cwaypoint list- Lists all global waypoints.
/cwaypoint view <name>- Shows full waypoint details (coordinates, dimension, creator, timestamp).
/cwaypoint remove <name>- Removes a global waypoint.
/cwaypoint rename <oldName> <newName>- Renames a global waypoint.
/cwaypoint compass get <name>- Gives you a compass pointing to the waypoint.
- Compass name includes the waypoint name and coordinates.
- While held, actionbar text shows target coordinates, dimension, and distance.
/cwaypoint compass remove- Removes all waypoint compasses from your inventory (hotbar, main inventory, offhand).
Waypoint Name Rules
- 1 to 32 characters
- Allowed characters:
A-Z,a-z,0-9,_,- - Names are matched case-insensitively
Storage
Waypoints are saved to:
config/central-waypoints.json
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:Pm6gTKs0:SkWtdZn7"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:Pm6gTKs0:SkWtdZn7"
}

