A lightweight PaperMC plugin that broadcasts a player's coordinates in chat using the /coords
command. Perfect for survival servers where players want to share their location.
- Customizable colors for player name, coordinates, and world via
config.yml
- Supports Overworld, Nether, and End
- Minimal resource usage
Edit plugins/Coordify/config.yml
to customize colors for the /coords
output:
colors:
player: "§b" # Color for player's name
coords: "§a" # Color for X, Y, Z coordinates
text: "§7" # Color for "is at" and "in the"
worlds:
overworld: "§2" # Color for Overworld
nether: "§4" # Color for Nether
end: "§e" # Color for End
Restart the server after editing to apply changes.
Note: Avoid using
/reload
as it may cause errors (e.g.,ConcurrentModificationException
). Always restart the server to apply changes toconfig.yml
.
- PaperMC: 1.21-1.21.5 (recommended: 1.21.5)
- Spigot: Likely compatible, but PaperMC is preferred for optimizations
- Unsupported: Vanilla Minecraft, Forge, Fabric
For older versions (e.g., 1.13–1.20), set api-version: 1.13
in plugin.yml
and test compatibility.
- Java 17+
- Maven
git clone https://github.com/h6rd/coordify.git
cd coordify
mvn clean package -Pmc-1.21.5
The compiled Coordify-1.0.jar
will be in the target
folder.
MIT License - Free to use, modify, and distribute.
Found a bug or have a feature request? Open an issue on GitHub.