Permissions Trouble :(

Discussion in 'Bukkit Help' started by DeathAssault, Aug 20, 2011.

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

    DeathAssault

    Code:
    groups:
        Guest:
            default: true
            info:
                prefix: ''
                suffix: ''
                build: false
                rank: 1
            inheritance:
            permissions:
                - 'essentials.warp'
                - 'essentials.signs.use.warp'
                - 'essentials.balance'
                - 'essentials.afk'
                - 'essentials.help'
                - 'essentials.helpop'
                - 'essentials.ignore'
                - 'essentials.mail'
                - 'essentials.mail.send'
                - 'essentials.motd'
                - 'essentials.suicide'
                - 'essentials.clearinventory'
                - 'essentials.back.ondeath'
                - 'essentials.tpa'
                - 'essentials.tpaccept'
                - 'essentials.tpdeny'
                - '-essentials.warp.cart'
        Crafter:
            default: false
            info:
                prefix: '[&5Crafter&/] '
                suffix: ''
                build: true
                rank: 2
            inheritance: Guest
            permissions:
                - 'essentials.sethome'
                - 'essentials.home'
                - 'lockette.user.create'
                - 'essentials.signs.use.sell'
                - 'essentials.signs.use.balance'
                - 'DuckShop.use.*'
                - 'essentials.pay'
                - '-essentials.warp.cart'
        BuildMaster:
            default: false
            info:
                prefix: '[&2Builder&/] '
                suffix: '[&eMaster&/] '
                build: true
                rank: 3
            inheritance: Crafter
            permissions:
                - 'ac.workbench'
                - '-essentials.warp.cart'
        BuildExpert:
            default: false
            info:
                prefix: '[&2Builder&/] '
                suffix: '[&3Expert&/] '
                rank: 4
            inheritance: BuildMaster
            permissions:
                - '-essentials.warp.cart'
                - 'nocheat.speedhack'
        Artist:
            default: false
            info:
                prefix: '[&9Artist&/] '
                suffix: ''
                build: true
                rank: 5
            inheritance: BuildExpert,PixelExpert
            permissions:
                - '-essentials.warp.cart'
                - 'nocheat.all'
        PixelMaster:
            default: false
            info:
                prefix: '[&2Pixel&/] '
                suffix: '[&eMaster&/] '
                build: true
                rank: 6
            inheritance: Crafter
            permissions:
                - 'ac.chest'
                - '-essentials.warp.cart'
        PixelExpert:
            default: false
            info:
                prefix: '[&2Pixel&/] '
                suffix: '[&3Expert&/] '
                build: true
                rank: 7
            inheritance: PixelMaster
            permissions:
                - '-essentials.warp.cart'
                - 'nocheat.flying'
        Moderator:
            default: false
            info:
                prefix: '[&bModerator&/] '
                suffix: ''
                build: true
                rank: 8
            inheritance: Artist
            permissions:
                - 'essentials.ban'
                - 'essentials.tempban'
                - 'essentials.kick'
        Admin:
            default: false
            info:
                prefix: '[&4Admin&/] '
                suffix: ''
                build: true
                rank: 9
            inheritance: Artist
            permissions:
                - '*'
        King:
            default: false
            info:
                prefix: '[&6King&/] '
                suffix: ''
                build: true
                rank: 10
            inheritance: Admin
            permissions:
                - '*'
        God:
            default: false
            info:
                prefix: '[&7God&/] '
                suffix: ''
                build: true
                rank: 11
            inheritance: King
            permissions:
                - '*'
    
    What is wrong with this? I don't know it anymore

    Hope someone can help me with this

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

    Sh8kezula

    Didnt I answer this one last night?

    Your problem is in the:
    Code:
        Crafter:
            default false
            info:
    
    You are missing a :

    It needs to like like this.

    Code:
        Crafter:
            default: false
            info:
    
     
  3. Offline

    dclardy

    This does not appear to be right.

    Code:
    - '-essentials.warp.cart'
    
    I am pretty sure that it should be this.

    Code:
    - 'essentials.warp.cart'
    
     
Thread Status:
Not open for further replies.

Share This Page