SimpleWaypoints
A Minecraft mod for the Fabric platform that adds a simple client-side waypoint system to the game.
Installation
To start using the mod, follow these steps:
- Install Fabric Loader into your game
- Download Fabric API and place the file in the mods folder:
- On Linux and Windows:
.minecraft/mods
- On Mac:
minecraft/mods
- On Linux and Windows:
- Download SimpleWaypoints and also move it to the mods folder
API Usage
In Gradle scripts, replace ${simplewaypoints_version}
with the current artifact version. Two repository options are available:
Own Repository
repositories {
maven {
url 'https://maven.xpple.dev/maven2'
}
}
GitHub Packages Repository
repositories {
maven {
url 'https://maven.pkg.github.com/xpple/SimpleWaypoints'
credentials {
username = System.getenv("GITHUB_USERNAME")
password = System.getenv("GITHUB_TOKEN")
}
}
}
Add the dependency:
dependencies {
include modImplementation("dev.xpple:simplewaypoints:${simplewaypoints_version}")
}
Always use the latest stable version of the mod for optimal performance!