https://github.com/h6rd/coordify
PaperMC plugin for sharing your coordinates in the chat
https://github.com/h6rd/coordify
minecraft-plugin papermc
Last synced: about 2 months ago
JSON representation
PaperMC plugin for sharing your coordinates in the chat
- Host: GitHub
- URL: https://github.com/h6rd/coordify
- Owner: h6rd
- License: mit
- Created: 2025-05-05T14:12:34.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-05T15:44:05.000Z (about 1 year ago)
- Last Synced: 2025-05-05T16:36:51.460Z (about 1 year ago)
- Topics: minecraft-plugin, papermc
- Language: Java
- Homepage: https://modrinth.com/plugin/coordify/
- Size: 7.02 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# Coordify
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.
## Features
- Customizable colors for player name, coordinates, and world via `config.yml`
- Supports Overworld, Nether, and End
- Minimal resource usage
## ⚙️ Configuration
Edit `plugins/Coordify/config.yml` to customize colors for the `/coords` output:
```yaml
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 to `config.yml`.
## 🛠️ Supported Versions
- **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.
## 📦 Building from Source
### Requirements
- Java 17+
- Maven
### Steps
```bash
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.
## 📜 License
[MIT License](LICENSE) - Free to use, modify, and distribute.
## 🐛 Issues
Found a bug or have a feature request? Open an issue on [GitHub](https://github.com/h6rd/coordify/issues).