A bukkit plugin specifically created to be able to send your current coordinates to a discord server.
This is explained in the following wiki page
Update the version in both pom.xml and src/main/resources/plugin.yml, then build the shaded plugin jar:
mvn versions:set -DnewVersion=0.2.2 -DgenerateBackupPoms=false
# Also update the `version:` field in src/main/resources/plugin.yml to the same value.
mvn clean packageThe binary to upload to the GitHub release is target/Discoords-0.2.2.jar.
- Sends message to Discord that the server is up
/discoords [message]command. Allows to send your current coordinates to an specific message channel. If a label is passed as argument it will also sent the label to the discord text channel.
Ex.
/discoords
-> Sent to discord: "(0, 0, 0) - by player"
/discoords diamonds
-> Sent to discord: "(0, 0, 0) - diamonds - by player"
/discoords a very big fortress
-> Sent to discord: "(0, 0, 0) - a very big fortress - by player"
/distancecommand. Calculates the distance between 2 locations, optionally being one of those your current location/save-coords <label>. Saves your current location to later on search it locally, but will not be sent through discord/search-coords <label>. Searches for a coordinate based on the given label/send-coords <label> [message]. Sends a previously saved coordinate to Discord. Prevents duplicate sending to avoid spam.