Permissions not assigning proper groups/permissions

Discussion in 'Bukkit Help' started by darkcloud784, Jun 26, 2011.

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

    darkcloud784

    I pretty sure I have it set up and the yaml parses correctly but none of my permissions are set correctly. People that should be builders arent set as builders and even the admins arent showing up as admins. Here are my Groups and Users.yml configs

    Code:
    ##
    # Users denote which users are included in which group.
    # TheNo1Yeti is in the Admin group
    # Herpina is a member of the Moderator group but also has access
    # to the herp.derp permissions
    # Derpina is a member of the admin group but does not have access
    # to the derp.derp permission node
    # Users can have a prefix and suffix of their own.
    ##
     users:
        Darkcloud784:
            groups:
                - Admins
            permissions:
                - SimpleGodMode.*
                - worldedit.*
        Gutika113:
            groups:
                - Admins
            permissions:
                - SimpleGodMode.*
                - worldedit.*
        Lhivorde:
            groups:
                - Moderator
            permissions:
                - modtrs.mod
                - herochat.*
                - iConomy.list
                - iConomy.bank.join
                - chestlock.*
                - iConomyChestShop.*
        ziggyoreo:
            groups:
                - Builder
            permissions:
                - motd.*
                - mcbans.vote.*
                - herochat.color
                - iConomy.list
                - iConomy.bank.join
                - chestlock.own
                - chestlock.lock
                - chestlock.coowner
                - chestlock.free
                - iConomyChestShop.*
                - -iConomyChestShop.admin
                - modtrs.command.modreq
                - modtrs.command.modlist
    
    Code:
    ##
    # AntiBuild is included with this.  To disable a group from being able to build then
    # set the build: flag to false (build: false).  If you want a group to be able to build
    # then set it to true.
    ##
    # Groups can contain inheritance.
    #   To make a group inherit the permissions from another
    #   group simply place the groups name in the "inheritance:" like so:
    #
    #   Example:
    #       inheritance:
    #           - Default
    ##
    #   Globalized Permission settings:
    #
    #       If a permission contains periods (.) you can denote a globalized parameter:
    #
    #           - 'foo.*'
    #
    #       This will allow you to use all general commands.
    #
    ##
    #   Single Asterisk denotes all commands:
    #
    #       - '*'
    ##
    #   To exempt a node use the - prefix like so:
    #       - '-foo.bar'
    ##
    #   prefix: and suffix: do not do anything on their own.  You need another outside plugin
    #   such as iChat or HeroChat in order for these to do anything.
    groups:
        Default:
            default: true
                build: false
            inheritance:
            permissions:
                - motd.*
                - modtrs.command.modlist
                - modtrs.command.modreq
                - -chestlock.own
                - -chestlock.lock
                - -chestlock.coowner
                - -chestlock.free
        Builder:
            default: false
                build: true
            inheritance:
                - Default
            permissions:
                - motd.*
                - mcbans.vote.*
                - herochat.color
                - iConomy.list
                - iConomy.bank.join
                - chestlock.own
                - chestlock.lock
                - chestlock.coowner
                - chestlock.free
                - iConomyChestShop.*
                - -iConomyChestShop.admin
                - modtrs.command.modreq
                - modtrs.command.modlist
        Moderator:
            default: false
                build: true
            inheritance:
                - Builder
            permissions:
                - modtrs.mod
                - herochat.*
                - iConomy.list
                - iConomy.bank.join
                - chestlock.*
                - iConomyChestShop.*
        Admins:
            default: false
                build: true
            inheritance:
            permissions:
                - '*'
    Anyone have any ideas as to whats going on?

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

    jtlcr777

    What folder are these YAML's in?

    And delete the random indentations of build: true and users: It should align properly.
    And where the heck is your "info:" section? build: true has to be under the "info:" section.
     
Thread Status:
Not open for further replies.

Share This Page