Advertisement
smbarbour

ChunkyBlocks plugin.yml

Mar 26th, 2012
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.74 KB | None | 0 0
  1. name: ChunkyBlocks
  2. main: cah.melonar.ChunkyBlocks
  3. author: Melonar
  4. version: 1.0
  5. description: |
  6.  Block based - If sponge (default) is in a chunk, that chunk will not be unloaded.  When that chunk attempts to be unloaded, it will ensure the adjacent chunks are loaded.
  7.   Command based - Chunks are specified by players (with permission) to remain loaded.  Those chunks and their adjacent chunks will remain loaded.
  8. commands:
  9.   setchunk:
  10.     description: Set a chunk to remain loaded.
  11.     permission: chunkyblocks.set
  12.     usage: /<command> [label] - Set chunk to keep loaded (with [label])
  13.   removechunk:
  14.     description: Remove chunk from load list.
  15.     permission: chunkyblocks.remove
  16.     usage: /<command> [label] - Remove chunk from load list (with [label])
  17.   listchunks:
  18.     description: List chunks belonging to a player.
  19.     permission: chunkyblocks.adminlist
  20.     usage: /<command> <player> - List chunks belonging to <player>.
  21.   telechunk:
  22.     description: Teleport to the highest block in the center of the chunk.
  23.     permission: chunkyblocks.adminteleport
  24.     usage: /<command> <player> [label] - Teleport to specified chunk.
  25.   removechunkadmin:
  26.     description: Remove another player's chunk from the list.
  27.     permission: chunkyblocks.adminremove
  28.     usage: /<command> <player> [label] - Remove specified chunk.
  29. permissions:
  30.   chunkyblocks.user:
  31.     default: op
  32.     children:
  33.       chunkyblocks.set: true
  34.       chunkyblocks.remove: true
  35.   chunkyblocks.admin:
  36.     default: op
  37.     children:
  38.       chunkyblocks.adminlist: true
  39.       chunkyblocks.adminteleport: true
  40.       chunkyblocks.adminremove: true
  41.   chunkyblocks.set:
  42.   chunkyblocks.remove:
  43.   chunkyblocks.adminlist:
  44.   chunkyblocks.adminteleport:
  45.  chunkyblocks.adminremove:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement