Advertisement
bkloppenborg

Untitled

Jun 11th, 2011
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.85 KB | None | 0 0
  1. # type:
  2. #    default = LIMIT counts ALL default protections (IGNORES chest:, furnace:, Etc)
  3. #    custom   = LIMIT becomes a default PER-BLOCK limit, while chest:, furance:, etc is the PER-BLOCK limit (e.g 0 protected furnaces, 2 chests)
  4.  
  5. # chest: unlimited, etc is just shown in master block to make it
  6. # clear they can be used here
  7. master:
  8.     limit: unlimited
  9.     type: custom
  10.     chest: unlimited
  11.     furnace: unlimited
  12.     dispenser: unlimited
  13.     wooden_door: unlimited
  14.     iron_door: unlimited
  15.  
  16. # Overrides for Permissions groups
  17. groups:
  18.    # Gives the group Example limits of 5 chests, 2 furnaces, and 1 dispenser, and 0 of everything else
  19.     Example:
  20.         limit: 0
  21.         type: custom
  22.         chest: 5
  23.         furnace: 2
  24.         dispenser: 1
  25.  
  26. players:
  27.    # Gives Notch unlimited protections
  28.     Notch:
  29.         limit: unlimited
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement