Advertisement
DokuProductions

Can't Figure Out How to Fix This

Jul 15th, 2012
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.49 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. #
  25. # The cannot-build message is configurable. If it is left blank, no message
  26. # will be displayed to the player if PermissionsBukkit prevents them from
  27. # building, digging, or interacting with a block. Use '&' characters to
  28. # signify color codes.
  29.  
  30. users:
  31.     Dokuekihebi:
  32.         groups:
  33.        - admin
  34.     Eylk:
  35.     groups:
  36.     - operator
  37.     JSKFox:
  38.     groups:
  39.     - operator
  40.     PandaLamb:
  41.     groups:
  42.     - operator
  43.        
  44. groups:
  45.     default:
  46.         permissions:
  47.             chairs.sit: true
  48.             jwarp.warp: true
  49.             permissions.build: true
  50.         vtriggers.player: true
  51.         vtriggers.create.*: true
  52.         chairs.sit: true
  53.         simplemail.inbox: true
  54.         simplemail.sendmail: true
  55.     admin:
  56.         permissions:
  57.         sunburn.protect: true
  58.         sunburn.toggle: true
  59.         sunburn.toggle.player: true
  60.         sunburn.toggle.mob: true
  61.         sunburn.protect.toggle.armor: true
  62.         sunburn.burn: true
  63.         sunburn.waste: true
  64.         sunburn.time: true
  65.         sunburn.usmite: true
  66.         flight.on.other: true
  67.         flight.off: true
  68.         flight.off.other: true
  69.         flight.check: true
  70.         flight.check.other: true
  71.         flight.toggle.other: true
  72.         vault.admin: true
  73.         permissions.*: true
  74.         permissions.group.*: true
  75.         permissions.player.*: true
  76.         inheritance:
  77.     - operator
  78.  
  79.     operator:
  80.     permissions:
  81.         flight.toggle: true
  82.         flight.on: true
  83.         flight.list: true
  84.         vtrigger.admin: true
  85.         jwarp.*: true
  86.         vtriggers.player:admin: true
  87.         plots.create:true
  88.         simplemail.*: true
  89.     inheritance:
  90.     - user
  91.  
  92.     user:
  93.         permissions:
  94.             chairs.sit: true
  95.             jwarp.warp: true
  96.             permissions.build: true
  97.         vtriggers.player: true
  98.         vtriggers.create.*: true
  99.         chairs.sit: true
  100.         simplemail.inbox: true
  101.         simplemail.sendmail: true
  102.         worlds:
  103.             creative:
  104.                 coolplugin.item: true
  105.         inheritance:
  106. messages:
  107.     build: '&cYou do not have permission to build here.'
  108.  
  109. debug: false
  110.  
  111. #Plugins:
  112. #
  113. #chairs
  114. #flight
  115. #jwarp
  116. #permissionsbukkit
  117. #plots
  118. #simplemail
  119. #sunburn
  120. #variabletriggers
  121. #vault
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement