Cant give permissions to my friends to build and break blocks

Discussion in 'Bukkit Help' started by jeffreydahlby, Jun 27, 2011.

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

    jeffreydahlby

    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
            info:
                prefix: ''
                suffix: ''
                build: true
            inheritance:
                - Admins
            permissions:
                - 'prefixer.list'
                - 'prefixer.self'
                - 'prefixer.remove'
                - 'prefixer.other'
                - 'wolfpound.adopt'
                - 'wolfpound.use'
                - 'wolfpound.create'
                - 'iConomy.list'
                - 'iConomy.payment'
                - 'iConomy.rank'
                - 'citizens.admin'
                - 'cannonball.display'
                - 'cannonball.configure'
                - 'cannonball.toggle'
                - 'chaircraft.sit'
        Moderator:
            default: false
            info:
                prefix: ''
                suffix: ''
                build: true
            inheritance:
                - Default
            permissions:
                - 'prefixer.list'
                - 'prefixer.self'
                - 'prefixer.remove'
                - 'prefixer.other'
                - 'wolfpound.adopt'
                - 'wolfpound.use'
                - 'wolfpound.create'
                - 'iConomy.list'
                - 'iConomy.payment'
                - 'iConomy.rank'
                - 'citizens.admin'
                - 'cannonball.display'
                - 'cannonball.configure'
                - 'cannonball.toggle'
                - 'chaircraft.sit'
    
        Admins:
            default: false
            info:
                prefix: ''
                suffix: ''
                build: true
            inheritance:
                - Default
            permissions:
                - '*'
                - 'prefixer.list'
                - 'prefixer.self'
                - 'prefixer.remove'
                - 'prefixer.other'
                - 'wolfpound.adopt'
                - 'wolfpound.use'
                - 'wolfpound.create'
                - 'iConomy.list'
                - 'iConomy.payment'
                - 'iConomy.rank'
                - 'citizens.admin'
                - 'cannonball.display'
                - 'cannonball.configure'
                - 'cannonball.toggle'
                - 'chaircraft.sit'
    Code:
    users:
        djmines:
            groups:
            - Admins
            permissions: []
        LookUpChuck:
            permissions:
            groups:
        jeffreydahlby:
            permissions:
            groups:
    
    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 17, 2016
  2. Offline

    MasterCheif

    write the group you want your friend to have to the users file
    exemple :
    Code:
        jeffreydahlby:
            permissions:
            groups: Moderator
    But is the default group has a build permission , then i dont know waths wrong.
     
  3. Offline

    jtlcr777

    First, delete all those Admins permissions since '*' means all commands. Don't need to add anymore. And any group inheriting Admins group doesn't need permissions either.

    Second, make sure you added everyone to a group. Or they will be sent to default group.

    And third, are these the global users/groups? If so, I think it would be safer to just use the world-specific folder with the group.yml and the users.yml instead.

    And finally, are there any errors in the console about permissions?
     
  4. Offline

    AdventurerOK

    do you have the default commands plugin?
    If so add
    - 'dc.do'
     
Thread Status:
Not open for further replies.

Share This Page