Updated Commands (markdown)

mikeprimm 2011-09-05 15:02:58 -07:00
parent f54159150c
commit 3b0ac6ec60

@ -22,6 +22,20 @@
* `/dynmap resetstats` : resets rendering statistics for all maps on all worlds.
* `/dynmap resetstats world` : resets rendering statistics for maps on world _world_.
## Markers ##
These commands are only available if the Markers Component has been enabled (v0.22 or later required).
* `/dmarker add <label> icon:<icon>` : adds a new marker at the player's current location, with a given label and optional icon
* `/dmarker add id:<id> <label> icon:<icon>` : adds a new marker at the player's current location, with the given ID, the given label and optional icon
* `/dmarker movehere <label>` : updates the location of the first marker matching the given label to match the current player's position
* `/dmarker movehere id:<id>` : updates the location of the marker with the given ID to match the current player's position
* `/dmarker update <label> icon:<newicon> newlabel:<newlabel>` : updates the icon and/or label of the first marker matching the given label
* `/dmarker update id:<id> icon:<newicon> newlabel:<newlabel>` : updates the icon and/or label of the marker with the given ID
* `/dmarker delete <label>` : deletes the first marker matching the given label
* `/dmarker delete id:<id>` : deletes the marker with the given ID
* `/dmarker list` : lists the attributes of all the defined markers
* `/dmarker icons` : lists the attributes of all the icons defined for use by markers
## Permissions ##
Permissions-based access control is currently supported, and the following nodes are defined:
@ -37,4 +51,9 @@ Permissions-based access control is currently supported, and the following nodes
* `dynmap.reload` - allows /dynmap reload
* `dynmap.stats` - allows /dynmap stats or /dynmap stats <world>
* `dynmap.resetstats` - allows /dynmap resetstats or /dynmap resetstats <world>
* `dynmap.marker.add` - allows /dmarker add
* `dynmap.marker.movehere` - allows /dmarker movehere
* `dynmap.marker.update` - allows /dmarker update
* `dynmap.marker.delete` - allows /dmarker delete
* `dynmap.marker.list` - allows /dmarker list
* `dynmap.marker.icons` - allows /dmarker icons