Guest User

Untitled

a guest
Jan 17th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.65 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.   Giroulas:
  26.     permissions:
  27.       permissions.exemple: true
  28.     groups:
  29.    - admin
  30.   Giroulas:
  31.     groups:
  32.    - admin
  33. groups:
  34.   default:
  35.     permissions:
  36.       permissions.build: true
  37.       essentials.afk: true
  38.       essentials.mail: true
  39.       essentials.mail.send: true
  40.       essentials.msg: true
  41.       essentials.msg.color: true
  42.       essentials.msg.format: true
  43.       essentials.msg.magic: true
  44.       essentials.msg.url: true
  45.       essentials.rules: true
  46.       essentials.suicide: true
  47.       essentials.spawn: true
  48.       essentials.back: true
  49.       essentials.ping: true
  50.       essentials.clearinventory: true
  51.       essentials.tpdeny: true
  52.       essentials.tpahere: true
  53.       essentials.tpaccept: true
  54.       essentials.tpa: true
  55.       essentials.sethome: true
  56.       essentials.home: true
  57.       essentials.delhome: true
  58.       essentials.signs.color: true
  59.       essentials.chat.color: true
  60.       simpleprefix.default: true
  61.   admin:
  62.     permissions:
  63.       permissions.*: true
  64.       simpleprefix.admin: true
  65.   vip:
  66.     permissions:
  67.       permissions.build: true
  68.       essentials.ptime: true
  69.       essentials.kits.dtools: true
  70.       simpleprefix.vip: true
  71.     inheritance:
  72.    - default
  73. messages:
  74.   build: '&cVous ne pouvez pas contruire !'
  75. debug: false
Add Comment
Please, Sign In to add comment