-= Group manager problem =-

Discussion in 'Bukkit Help' started by 43eyes, Jul 11, 2012.

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

    43eyes

    Okay, I am just now getting a server going using essentials group manager, and here is my groups.yml file so far.

    Code:
    # Group inheritance
    #
    # Any inherited groups prefixed with a g: are global groups
    # and are inherited from the GlobalGroups.yml.
    #
    # Groups without the g: prefix are groups local to this world
    # and are defined in the this groups.yml file.
    #
    # Local group inheritances define your promotion tree when using 'manpromote/mandemote'
     
    groups:
      Default:
        default: true
        permissions:
        - -bukkit.command.kill
        - essentials.motd
        - essentials.spawn
        inheritance:
        - g:groupmanager_default
        - g:bukkit_default
        - g:essentials_default
        - g:towny_default
        info:
          prefix: '[DEFAULT] - &7'
          build: false
          suffix: ''
      Builder:
        default: false
        permissions:
        - -essentials.tp
        - -essentials.time
        - -essentials.warp
        - -essentials.sethome
        inheritance:
        - default
        - g:essentials_builder
        - g:towny_builder
        info:
          prefix: '[BUILDER] - &2'
          build: true
          suffix: ''
      Moderator:
        default: false
        permissions:
        - -essentials.ban
        - -essentials.ban.offline
        - -essentials.ban
        - -essentials.kick
        - -essentials.butcher
        inheritance:
        - builder
        - g:groupmanager_moderator
        - g:bukkit_moderator
        - g:essentials_moderator
        - g:towny_moderator
        - g:vanish_moderator
        info:
          prefix: '[MODERATOR] - &5'
          build: true
          suffix: ''
      Admin:
        default: false
        permissions:
        - essentials.setspawn
        - essentials.reload
        - groupmanager.manuadd
        - groupmanager.manudel
        - groupmanager.manpromote
        - groupmanager.mandemote
        - groupmanager.manwhois
        inheritance:
        - moderator
        - g:groupmanager_admin
        - g:bukkit_admin
        - g:essentials_admin
        - g:towny_admin
        - g:vanish_admin
        info:
          prefix: '[ADMIN] - &c'
          build: true
          suffix: ''
      Owner:
        default: false
        permissions:
        - '*'
        inheritance:
        - admin
        info:
          prefix: '[OWNER] - &9'
          build: true
          suffix: ''
    Now, for some reason, even if I am an owner, there are some commands I can't do. For instance, I can set spawn, but I can't do //wand, even though I have '*' as a node. If you look at Admin, you can clearly see I have set essentials.setspawn as a node, but when I am admin in the game, I cant set spawn, but I can reload the server. It's weird. I need some help!
     
  2. Offline

    W&L-Craft

    I also had this problem
    just OP yourself and you have acces to all commands
     
  3. Offline

    CRAZYxMUNK3Y

    Can you also post your globalgroups.yml file? Also, when setting a inheritance, it's best to keep the capitilisation the same as the group, eg, use Builder instead of builder.
     
  4. Offline

    zipron

    dude... what if he wants proper permission for all kind of groups?

    do you have any groupmanager errors in your console when starting your server? if so, paste them here between
    Code:
    [code]
     
  5. Offline

    43eyes

    This problem is fixed now. This thread is dead.
     
  6. Offline

    Willpool

    Problems:

    - wrongly formatted prefixes. e.g &6[&4Default&6]
    - in Builder group you put another "-" before the node. (e.g it's - essentials.tp not - -essentials.tp)

    I know the problem is fixed now I just wanted to put that out there xD
     
Thread Status:
Not open for further replies.

Share This Page