Advertisement
smbarbour

ChunkyBlocks plugin.yml

Mar 26th, 2012
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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.   mychunks:
  18.     description: List chunks belonging to yourself.
  19.     permission: chunkyblocks.list
  20.     usage: /<command> - List chunks belonging to you.
  21.   listchunks:
  22.     description: List chunks belonging to a player.
  23.     permission: chunkyblocks.adminlist
  24.     usage: /<command> <player> - List chunks belonging to <player>.
  25.   telechunk:
  26.     description: Teleport to the highest block in the center of the chunk.
  27.     permission: chunkyblocks.adminteleport
  28.     usage: /<command> <player> [label] - Teleport to specified chunk.
  29.   removechunkadmin:
  30.     description: Remove another player's chunk from the list.
  31.     permission: chunkyblocks.adminremove
  32.     usage: /<command> <player> [label] - Remove specified chunk.
  33. permissions:
  34.   chunkyblocks.user:
  35.     default: op
  36.     children:
  37.       chunkyblocks.set: true
  38.       chunkyblocks.remove: true
  39.       chunkyblocks.list: true
  40.   chunkyblocks.admin:
  41.     default: op
  42.     children:
  43.       chunkyblocks.adminlist: true
  44.       chunkyblocks.adminteleport: true
  45.       chunkyblocks.adminremove: true
  46.   chunkyblocks.set:
  47.   chunkyblocks.remove:
  48.   chunkyblocks.list:
  49.   chunkyblocks.adminlist:
  50.   chunkyblocks.adminteleport:
  51.  chunkyblocks.adminremove:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement