Hello everyone,
This is a small Bukkit plugin I made called Coordinate Notation. It basically allows you to use user-made "keys" to point to coordinates in commands and the chat window, instead of having to remember the coordinates themselves.
Note: "rem" stands for "remember", which is what the IRC bot I got this idea from used to remember things.
For example, if I use:
/rem cobbleblock
on a cobblestone block I want to replace later, the game will store the coordinates for later use. If I then use:
/setblock $cobbleblock stone
It'll be the same as using:
/setblock <cobbleX> <cobbleY> <cobbleZ> stone
This also works in chat! Typing:
Hello everyone, check out my super-secret chest of diamonds at $diamondChest!
will display:
Hello everyone, check out my super-secret chest of diamonds at <chestX> <chestY> <chestZ>!
In my testing, this works on any command that needs coordinates, even commands that other plugins add!
Features:
- /rem <key>: Saves the highlighted block's coordinates with the given key.
- /showrem <key>: Displays the coordinates tagged with the given key.
- /showprem: Displays the last saved coordinates.
- /remclear: "Forgets" all saved coordinates.
- /showkeys: Displays all saved locations.
Hope you enjoy! :)
-Geforce