Advertisement
Guest User

YALM

a guest
Nov 6th, 2011
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 5.63 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. scottm99:
  32.         permissions:
  33.            
  34.         groups:
  35.        - Admin
  36. vcube_321:
  37.         permissions:
  38.            
  39.         groups:
  40.        - Super Leader
  41.  
  42. DNA_AND:
  43.         permissions:
  44.            
  45.         groups:
  46.        - Admin
  47.  
  48. skinnybones111:
  49.         permissions:
  50.            essentials.ban.exempt
  51.             essentials.firebal
  52.             essentials.tpaall
  53.  
  54.         groups:
  55.        - Admin
  56. groups:
  57.     Cubes:
  58.         permissions:
  59.             permissions.build: true
  60.             permissions.help
  61.             permissions.player.groups
  62.             permissions.group.players  
  63.             multihome.defaulthome.go
  64.             multihome.defaulthome.set
  65.             multihome.defaulthome.invite
  66.             multihome.namedhome.set
  67.             multihome.namedhome.delete
  68.             multihome.namedhome.list
  69.             multihome.namedhome.invite
  70.             multihome.homeondeath
  71.             fight.user
  72.             silence.query
  73.             ChestShop.shop.create
  74.             ChestShop.shop.buy
  75.             EasyTP.to
  76.             SimpleWhisper.use
  77.             SheepFeed.feed
  78.             essentials.afk
  79.             essentials.msg
  80.             essentials.suicide
  81.             essentials.back
  82.             essentials.back.ondeath
  83.             essentials.home
  84.            essentials.delhome
  85.            essentials.sethome
  86.            essentials.sethome.multiple
  87.            essentials.tpa
  88.            essentials.tpaccept
  89.            essentials.tpdeny
  90.            essentials.tpahere
  91.            essentials.warp
  92.            essentials.list
  93.    
  94. Admin:
  95.         permissions:
  96.             permissions.*: true
  97.             permissions.group.list
  98.             permissions.player.addgroup
  99.             multihome.othershome.go
  100.             fight.admin
  101.             fight.user
  102.             silence.modifyall
  103.             silence.modify
  104.             silence.queryall
  105.             simpleWeather.set
  106.             ChestShop.admin
  107.             EasyTP.from
  108.             adminchat.enable
  109.             SimpleJail.jail
  110.             SimpleJail.unjail
  111.             SimpleJail.setjail
  112.             SheepFeed.info
  113.             worldguard.god
  114.             worldguard.heal
  115.             worldguard.locate
  116.             worldguard.stack.illegitimate
  117.             worldguard.stack
  118.             worldguard.fire-toggle.*
  119.             worldguard.halt-activity.*
  120.             worldguard.region.define
  121.             worldguard.region.claim
  122.             worldguard.region.redefine.*
  123.             worldguard.region.list
  124.             herospawn.tp
  125.             herospawn.set
  126.             spawnmob.moblist
  127.             spawnmob.spawnmob
  128.             essentials.afk.kickexempt
  129.             essentials.seen
  130.             essentials.spawner
  131.             essentials.ban  
  132.             essentials.banip
  133.             essentials.invsee
  134.            essentials.lightning
  135.            essentials.gc
  136.            essentials.kill
  137.            essentials.mute
  138.            essentials.socialspy
  139.            essentials.tempban
  140.            essentials.unban
  141.            essentials.unbanip
  142.            essentials.setspawn
  143.            ssentials.delhome.others
  144.            essentials.setwarp
  145.            essentials.sethome.multiple.unlimited
  146.            essentials.tp
  147.            essentials.top
  148.            essentials.warp.list
  149.            essentials.warp.otherplayers
  150.            essentials.world
  151.            essentials.portal
  152.            essentials.list.hidden
  153.            bb.admin.rollback
  154.            adminchat
  155.            prefixer.self
  156.            logblock.me
  157.            logblock.rollback
  158.            logblock.tools.tool
  159. inheritance:
  160.        - Cubes
  161.     Super Leader:
  162.         permissions:
  163.             permissions.build: true
  164.         worlds:
  165.             creative:
  166.                 coolplugin.item: true
  167.                 silence.silenceall.ignore
  168.                 StopLava.canUseLava
  169.                 worldguard.ungod
  170.                 essentials.ban.offline
  171.                 essentials.burn
  172.  
  173. inheritance:
  174.        - admin
  175. messages:
  176.     build: '&cYou do not have permission to build here.'
  177.  
  178.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement