Advertisement
Guest User

Permissions

a guest
Aug 26th, 2012
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.57 KB | None | 0 0
  1. # PermissionsBukkit configuration file
  2. #
  3. # A permission node is a string like 'permissions.build', usually starting
  4. # with the name of the plugin. Refer to a plugin's documentation for what
  5. # permissions it cares about. Each node should be followed by true to grant
  6. # that permission or false to revoke it, as in 'permissions.build: true'.
  7. # Some plugins provide permission nodes that map to a group of permissions -
  8. # for example, PermissionsBukkit has 'permissions.*', which automatically
  9. # grants all admin permissions. You can also specify false for permissions
  10. # of this type.
  11. #
  12. # Users inherit permissions from the groups they are a part of. If a user is
  13. # not specified here, or does not have a 'groups' node, they will be in the
  14. # group 'default'. Permissions for individual users may also be specified by
  15. # using a 'permissions' node with a list of permission nodes, which will
  16. # override their group permissions. World permissions may be assigned to
  17. # users with a 'worlds:' entry.
  18. #
  19. # Groups can be assigned to players and all their permissions will also be
  20. # assigned to those players. Groups can also inherit permissions from other
  21. # groups. Like user permissions, groups may override the permissions of their
  22. # parent group(s). Unlike users, groups do NOT automatically inherit from
  23. # default. World permissions may be assigned to groups with a 'worlds:' entry.
  24. users:
  25.   ConspiracyWizard:
  26.     permissions:
  27.       permissions.example: true
  28.     groups:
  29.    - admin
  30.   mze9412:
  31.     groups:
  32.    - default
  33.     permissions:
  34.       mze.home.nocooldown: true
  35.   volarn:
  36.     groups:
  37.    - default
  38.     permissions:
  39.       mze.home.nocooldown: false
  40.   sukiiland:
  41.     groups:
  42.    - default
  43.     permissions:
  44.       mze.home.nocooldown: true
  45.   brinok:
  46.     groups:
  47.    - default
  48.     permissions:
  49.       mze.home.nocooldown: true
  50.   michaels776:
  51.     groups:
  52.    - default
  53.     permissions:
  54.       mze.home.nocooldown: true
  55. groups:
  56.   Default:
  57.     info: []
  58.     permissions:
  59.       mze.home.*: true
  60.       mze.home.nocooldown: false
  61.       scrollingmenusign.*: true
  62.       signlift.*: true
  63.       myworlds.world.enter.*: true
  64.       myworlds.portal.enter.*: true
  65.       myworlds.portal.use: true
  66.       myworlds.world.use.*: true
  67.       enchanter.enchant: false
  68.       minecartmania.signs.create.*: true
  69.       minecartmania.signs.break.*: true
  70.     build: true
  71.     prefix:
  72.    - YoT
  73.     options:
  74.       rank: 1000
  75.   admin:
  76.     permissions:
  77.       permissions.*: true
  78.     inheritance:
  79.    - Default
  80. messages:
  81.   build: '&cYou do not have permission to build here.'
  82. debug: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement