help on essentials groupmanager

Discussion in 'Bukkit Help' started by Bubbyclapp, Feb 26, 2012.

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

    Bubbyclapp

    I dont know but is this lay out right?
    Code:
    groups:
     
      Guest:
        default: true
        permissions:
        - g:essentials.spawn
        - g:essentials.help
        - g:essentials.motd
        inheritance:
        - g:essentials_builder
        - g:essentials_default
        - g:bukkit_default
        info:
          prefix: '&2[Guest]&2'
          build: false
          suffix: ''
      Member:
        default: false
        permissions:
        - g:essentials.kit'
        - g:essentials.spawn
        - g:essentials.help
        - g:essentials.motd
        - g:essentials.plugins
        - 'iConomy.*'
        - 'lockette.user.create.*'
        - 'ChestShop.shop.*'
        - 'ChestShop.nofee.*'
        - 'factions.*'
        - 'Jobs.*'
        - 'lockette.*'
        inheritance:
        - Guest
        info:
          prefix: '&2[Member]&2'
          build: true
          suffix: ''
      Mod: 
        default: false
        permissions:
        - 'automessage.*'
        - 'worldedit.*'
        - 'lockette.admin.*'
        - 'supplysign.*'
        - 'ChestShop.*'
        inheritance:
        - Member
        - g:essentials_admin
        - g:bukkit_admin
        info:
          prefix: '&5[Mod]&5'
          build: true
          suffix: ''
    Owner:
        default: false
        permissions:
        - '*'
        - 'iconomy.*'
        - 'regios.*'
        inheritance:
        - Mod
        info:
          prefix: '&6[Owner]&6'
          build: true
          suffix: ''
      CoOwner:
        default: false
        permissions:
        - '*'
        - 'iconomy.*'
        inheritance:
        - Owner
        info:
          prefix: '&6[CoOwner]&6'
          build: true
          suffix: ''      
     
  2. Offline

    CRAZYxMUNK3Y

    This is how mine is set up, it all depends of how you want your server to run, but to start with, the gap near the top (between Groups: and Guest: shouldn't be there...)

    globalgroups.yml
    Code:
    groups:
      g:owner:
        permissions: []
        info:
          prefix: '&Owner'
          build: false
          suffix: ''
      g:$sub:
        permissions:
        - null
        info:
          prefix: '&8$ '
          build: false
          suffix: ''
      g:moderator:
        permissions:
        - bb.admin.info
        - bb.admin.rollback
        - essentials.broadcast
        - essentials.clearinventory
        - essentials.delwarp
        - essentials.eco.loan
        - essentials.ext
        - essentials.getpos
        - essentials.helpop.recieve
        - essentials.home.others
        - essentials.invsee
        - essentials.jails
    
    groups.yml (each world folder)
    Code:
    groups:
      Default:
        default: true
        permissions:
        - -bukkit.command.kill
        inheritance:
        - g:essentials_default
        - g:bukkit_default
        info:
          prefix: '&e'
          build: false
          suffix: ''
      Builder:
        default: false
        permissions: []
        inheritance:
        - Default
        - g:essentials_builder
        info:
          prefix: '&2'
          build: true
          suffix: ''
      Moderator:
        default: false
        permissions: []
        inheritance:
        - Builder
        - g:essentials_moderator
        - g:bukkit_moderator
        info:
          prefix: '&5'
          build: true
          suffix: ''
      Admin:
        default: false
        permissions: []
        inheritance:
        - Moderator
        - g:essentials_admin
        - g:bukkit_admin
        info:
          prefix: '&c'
          build: true
          suffix: ''
      Owner:
        default: false
        permissions:
        - '*'
        inheritance:
        - admin
        info:
          prefix: '&4'
          build: true
          suffix: ''
    
     
  3. Offline

    Daniel Heppner

    Solution: PermissionsEX
     
  4. Offline

    itorrent

    I found that in many situations, GM and bPerms is at least equal or even better than PEX (i've used pex since it came out and i have tried them all :) )

    @ Bubbyclapp here's a fixed version of your groups.yml file: http://pastebin.com/13EVmT3X ENJOY!
     
  5. Offline

    Daniel Heppner

    GM still has a lot of inefficient code. bPerms is nice, though.
     
  6. Offline

    Bubbyclapp

    Thanks guys you are the best besides im new to the forums and thank again : )
     
Thread Status:
Not open for further replies.

Share This Page