Permissions wont let People place Blocks

Discussion in 'Bukkit Help' started by kexus, Apr 9, 2011.

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

    kexus

    Permissions won't let anybody place or destroy blocks. Its like everyone has build set to false, when they aren't. I have 670 and Permissions 2.6.

    Here is my settings file.
    Code:
    # System is no longer used, but may become used in the future
    # Copies is for multiple-world support
    #   Put the name of the world you wish for it to be a clone of, otherwise leave it empty.
    #   If this file is for your default world (the one in server.properties) then you must
    #   leave copies blank.
    #  Example: copies: Derp    -  This will clone the permissions of the world Derp
    #
    # Make sure to rename this file to the name of the world that is in sever.properties under
    # level-name.  So if it is level-name: world  then this should be world.yml and in the
    # plugins/Permissions directory (ie. plugins/Permissions/world.yml)
    #
    # NOTE: Do not use tabs while editing this document.  Use only spaces.  A good way to avoid
    # doing this is to use Notepad++ and replace the tab with 4 spaces.
    Plugin:
        permissions:
            system: default
            copies:
    
    ##
    # 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
    ##
    #   All permissions including the asterisks must be placed in single quotes.
    #   like so:
    #
    #       - 'foo.bar'
    #
    #   Otherwise errors will happen!
    ##
    #   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:
    #
    #       - '*'
    #   If you give a group this permissions, do not have the group inherit any permissions
    #   from other groups.  Any users assigned to this group should NOT be given any additional
    #   permissions either.
    ##
    #   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.
        Default:
            default: true
            info:
                prefix: ''
                suffix: ''
                build: true
            inheritance:
            permissions:
                - 'essentials.home'
                - 'essentials.sethome'
                - 'essentials.warp.*'
                - 'essentials.tp.*'
                - 'essentials.setwarp.*'
                - 'mywarp.*'
                - 'uQuest.CanQuest'
                - 'essentials.list'
                - 'mobrider.animals'
                - 'mobrider.command.*'
    
        restricted:
            default: false
            info:
                prefix: '[Restricted]'
                suffix: ''
                build: true
            inheritance:
            permissions:
    
        movecraft:
                default: false
                info:
                    prefix: ''
                    suffix: ''
                    build: true
                inheritance:
                    - Default
                permissions:
                    - 'movecraft.*'
    
        Economy:
            default: false
            info:
                prefix: ''
                suffix: ''
                build: true
            inheritance:
                - Default
            permissions:
                - 'iConomy.payment'
                - 'iConomy.access'
                - 'iConomy.rank'
                - 'iConomy.list'
                - 'iConomy.withdraw'
                - 'iConomy.deposit'
                - 'iConomy.reset'
     
        Moderator:
            default: false
            info:
                prefix: '[M] '
                suffix: ''
                build: true
            inheritance:
                - Default, Economy, movecraft
            permissions:
                - 'general.*'
                - 'essentials.*'
                - 'spells.*'
                - 'wand.*'
                - 'mobRider.*'
     
        Admins:
            default: false
            info:
                prefix: 'Lord '
                suffix: ''
                build: true
            inheritance:
                - Moderator
            permissions:
                - '*'
    
    # 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 also have a prefix and suffix as seen with Herpina
    ##
    users:
        users:
        kexus321:
            group: Admins
            permissions:
        pie:
            group: restricted
            permissions:
        Player:
            group: restricted
            permissions:
        darkgrave:
            group: Moderator
            permissions:
        menarndi:
            group: Moderator
            permissions:
                - '-kill.*'
        jlemon96:
            group: Moderator
            permissions:
                - '-kill.*'
        pokeslot:
            group: Moderator
            permissions:
                - '-kill.*'
    I'd really appreciated any help.
     
  2. Offline

    Andre_9796

    Make sure you arent trying to build near spawn, if so, change spawn protection in server.properties to 0 (zero).
     
Thread Status:
Not open for further replies.

Share This Page