PermissionsEX sample config?

Discussion in 'Bukkit Help' started by Hobo888`, Mar 25, 2012.

Thread Status:
Not open for further replies.
  1. Offline

    Hobo888`

    Could someone help with this? I am new to plugins and all this but really want to setup permissions in my server. If someone could setup a config with no permissions (I can do that myself) but with these groups that would be awesome. The groups would be: Default, Member, Trusted, Donator, Moderator, Admin, Owner . Thanks again!
     
  2. Offline

    bastion

    I will give you my permissions file:

    Code:
    groups:
      guest:
        default: true
        prefix: '&e'
        permissions:
        - essentials.afk
        - essentials.compass
        - essentials.depth
        - essentials.getpos
        - essentials.help
        - essentials.list
        - essentials.motd
        - essentials.rules
        - essentials.spawn
        - modifyworld.login
        - modifyworld.chat
        - modifyworld.usebeds
        - modifyworld.sneak
        - modifyworld.sprint
        - -modifyworld.damage.*
        - -modifyworld.mobtarget.*
        - modifyworld.interact.*
        options:
          rank: '100'
      survival:
        prefix: '&b'
        permissions:
        - essentials.afk
        - essentials.clearinventory
        - essentials.compass
        - essentials.depth
        - essentials.getpos
        - essentials.help
        - essentials.list
        - essentials.motd
        - essentials.rules
        - essentials.spawn
        - essentials.suicide
        - essentials.warp
        - essentials.warp.spawn
        - essentials.warp.list
        - modifyworld.*
        inheritance:
        - eco
        options:
          rank: '80'
      apprentice:
        prefix: '&b'
        permissions:
        - essentials.afk
        - essentials.back
        - essentials.back.ondeath
        - essentials.clearinventory
        - essentials.compass
        - essentials.depth
        - essentials.getpos
        - essentials.help
        - essentials.home
        - essentials.jump
        - essentials.list
        - essentials.motd
        - essentials.rules
        - essentials.sethome
        - essentials.spawn
        - essentials.suicide
        - essentials.top
        - essentials.tp
        - essentials.warp
        - essentials.warp.spawn
        - essentials.warp.list
        - modifyworld.*
        inheritance:
        - eco
        options:
          rank: '70'
      builder:
        prefix: '&b'
        permissions:
        - essentials.afk
        - essentials.back
        - essentials.back.ondeath
        - essentials.clearinventory
        - essentials.compass
        - essentials.depth
        - essentials.gamemode
        - essentials.getpos
        - essentials.heal
        - essentials.help
        - essentials.home
        - essentials.item
        - essentials.itemspawn.item-all
        - essentials.jump
        - essentials.kit
        - essentials.kit.*
        - essentials.list
        - essentials.motd
        - essentials.rules
        - essentials.sethome
        - essentials.sethome.multiple
        - essentials.setwarp
        - essentials.spawn
        - essentials.suicide
        - essentials.top
        - essentials.tp
        - essentials.warp
        - essentials.warp.*
        - essentials.warp.list
        - modifyworld.*
        - worldedit.*
        inheritance:
        - eco
        options:
          rank: '60'
      pro:
        prefix: '&2'
        permissions:
        - BetterShop.*
        - essentials.*
        - modifyworld.*
        - multiverse.*
        - permissions.*
        - orbEnhance.*
        - worldedit.*
        - worldguard.*
        inheritance:
        - eco
        options:
          rank: '40'
      eco:
        permissions:
        - essentials.balance
        - essentials.pay
        - essentials.worth
        - BetterShop.user.*
      owner:
        prefix: '&5'
        permissions:
        - '*
    users:
      owner1:
        group:
        - owner
      owner2:
        group:
        - owner
      user1:
        group:
        - guest'
     
  3. Offline

    Hobo888`

    I'm a little confused with the way it is setup with all the plugins you have and the sections for them, do you have a less complicated one? Thanks also for uploading this one though!
     
  4. Offline

    bastion

    umm, well, that is a template permissions.yml, the spacing is correct, it works, what ever you don't need just delete it, what ever you need to add just add it. this is a pretty straight forward file, everything is even alphabetical.

    this covers the following plugins
    essentials 2.9.1.3 this includes some economy, there are a bunch more permissions for essentials that i don't use.
    modifyworld which comes with permissionsex and allows control of your world
    world edit
    world guard
    multiverse
    bettershop for shops for essentials economy

    the only thing more simple than what I gave you, would be:

    Code:
    groups:
      default:
        permissions:
        - modifyworld.*
     
  5. Offline

    Hobo888`

    Alright well thank you, I suppose I could copy your and make it simple myself. Thanks again though

    Could you tell me what permission I have to add to make Guests not use beds?

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 24, 2016
  6. Offline

    Crafted_devil

    Code:
            - essentials.sethome.multiple.[5]
    Just wondering, did I do that correctly so that the rank can only set 5 homes?
     
  7. Offline

    Rokinscom

    I think that would be a cool adition to a server Crafted_Devil so I am wondering the asme thing
     
  8. Offline

    chrisyrowlands

    iv got it all working thanks to your example , except i needed to tak out the inheritance to make it work , but i cannot add users nor add /pex group Admin user add [playername] any ideas why , even though im op i havent got the right permissions ,
     
  9. Offline

    Necrodoom

    nope. you configure the sethome in config

    if i do member: 5
    i do essentials.sethome
    essentials.sethome.multiple
    essentials.sethome.multiple.member
    to give 5 homes.
     
Thread Status:
Not open for further replies.

Share This Page