dynmap-neoforge/src/main/resources/plugin.yml
2011-09-06 07:53:48 +08:00

114 lines
No EOL
4.4 KiB
YAML

name: dynmap
main: org.dynmap.DynmapPlugin
version: "0.22"
authors: [FrozenCow, mikeprimm, zeeZ]
softdepend: [Permissions]
commands:
dynmap:
description: Controls Dynmap.
usage: |
/<command> hide - hides the player from the map.
/<command> hide TheDude - hides the player 'TheDude' from the map.
/<command> show - shows the player from the map.
/<command> show TheDude - shows the player 'TheDude' from the map.
/<command> render - Renders the tile at your location.
/<command> fullrender - Render all maps for entire world from your location.
/<command> fullrender world - Render all maps for entire world 'world'.
/<command> fullrender world:mapname - Render map 'mapname' of world 'world'.
/<command> radiusrender ## - Render at least ## block radius from your location on all maps.
/<command> radiusrender ## mapname - Render at least ## block radius from your location on map 'mapname'
/<command> cancelrender - Cancels any active renders on current world
/<command> cancelrender world - Cancels any active renders of world 'world'
/<command> stats - Show render statistics.
/<command> stats world - Show render statistics for maps on world 'world'.
/<command> resetstats - Reset render statistics.
/<command> resetstats world - Reset render statistics for maps on world 'world'.
dmarker:
description: Manipulate map markers
usage: |
/<command> add <label> - add new marker with given label at current location (use double-quotes if spaces needed)
/<command> add id:<id> <label> - add new marker with given ID at current location (use double-quotes if spaces needed)
/<command> movehere <label> - move marker with given label to current location
/<command> movehere id:<id> - move marker with given ID to current location
/<command> update <label> icon:<icon> newlabel:<newlabel>- update marker with given ID with new label and/or icon
/<command> delete <label> - delete marker with given label
/<command> delete id:<id> - delete marker with given ID
/<command> list - list details of all markers
/<command> icons - list details of all icons
permissions:
dynmap.*:
description: Gives access to all dynmap functions
default: op
children:
dynmap.render: true
dynmap.show.self: true
dynmap.show.others: true
dynmap.hide.self: true
dynmap.hide.others: true
dynmap.fullrender: true
dynmap.radiusrender: true
dynmap.cancelrender: true
dynmap.reload: true
dynmap.stats: true
dynmap.resetstats: true
dynmap.marker.add: true
dynmap.marker.update: true
dynmap.marker.movehere: true
dynmap.marker.delete: true
dynmap.marker.list: true
dynmap.marker.icons: true
dynmap.marker.sign: true
dynmap.render:
description: Allows /dynmap render command
default: true
dynmap.show.self:
description: Allows /dynmap show (on self)
default: true
dynmap.show.others:
description: Allows /dynmap show <player>
default: op
dynmap.hide.self:
description: Allows /dynmap hide (on self)
default: true
dynmap.hide.others:
description: Allows /dynmap hide <player>
default: op
dynmap.fullrender:
description: Allows /dynmap fullrender or /dynmap fullrender <world>
default: op
dynmap.radiusrender:
description: Allows /dynmap radiusrender
default: op
dynmap.cancelrender:
description: Allows /dynmap cancelrender <world>
default: op
dynmap.reload:
description: Allows /dynmap reload
default: op
dynmap.stats:
description: Allows /dynmap stats or /dynmap stats <world>
default: true
dynmap.resetstats:
description: Allows /dynmap resetstats or /dynmap resetstats <world>
default: op
dynmap.marker.add:
description: Allows /dmarker add
default: op
dynmap.marker.update:
description: Allows /dmarker update
default: op
dynmap.marker.movehere:
description: Allows /dmarker movehere
default: op
dynmap.marker.delete:
description: Allows /dmarker delete
default: op
dynmap.marker.list:
description: Allows /dmarker list
dynmap.marker.icons:
description: Allows /dmarker icons
dynmap.marker.sign:
description: Allows creation of markers using signs
default: op