Permissions not working, help please!

Discussion in 'Bukkit Help' started by ClintonP929, Mar 17, 2011.

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

    ClintonP929

    Okay I have set up my permissions like this

    Code:
    groups:
        Default:
            default: true
            info:
                prefix: 'Guest'
                suffix:
                build: false
            inheritance:
            permissions:
                - 'general.spawn'
        Member:
            default: true
            info:
                prefix: 'Member'
                suffix:
                build: false
            inheritance:
                - Default
            permissions:
                - 'essentials.sethome'
                - 'essentials.home'
                - 'essentials.eco'
                - 'essentials.balance'
                - 'essentials.pay'
                - 'essentials.afk'
                - 'essentials.mail.send'
                - 'essentials.signs.buy.use'
                - 'essentials.signs.sell.use'
        Mod:
            default: false
            info:
                prefix: 'Mod'
                suffix:
                build: true
            inheritance:
                - Member
            permissions:
                - 'general.time'
                - 'worldedit.region.set'
                - 'worldedit.wand'
                - 'essentials.signs.buy.create'
                - 'essentials.signs.sell.create'
                - 'essentials.jump'
        Admin:
            default: false
            info:
                prefix: 'Admin'
                suffix:
                build: true
            inheritance:
            permissions:
                - '*'
    
    ##
    # DarkGrave has control over all commands.
    ##
    users:
        DarkGrave:
            group: Admin
            permissions:
        ClintonP929:
            group: Admin
            permissions:
        chillimonkey:
            group: Admin
            permissions:
        GabrielisEpic
            group: Mod
            permssions:
    And in game it doesent work, plus beside our names it says [default].... Anyone know why?
     
  2. Offline

    Reil

    First things first: Did you name the config file to the world name?
     
  3. Offline

    ClintonP929

    Yeah, config is names "world", witch is the name of world.. Im running windows 7, 64 bit if that helps at all...
     
  4. Offline

    mik99925

    I do believe I see two default groups in there. Member and Default both have "default: true" in their descriptions.
     
  5. Offline

    ClintonP929

    Thanks didnt notice that, changed it and made no diffrence.. Thanks anyhow
     
  6. Offline

    solentice

    One thing I noticed is that you have commands for the General plugin AND for Essentials plugin. Because they both use many, if not all of the same commands, they are known to conflict with each other, so you have to only use one or the other, not both. I know the Essentials plugin developer states this on their page:
    Known Plugin Command Conflicts
    GeneralAll commands conflict with this plugin.
     
  7. Offline

    ClintonP929

    Okay, I have done everything you guys have said, and nothing is working, thanks for advice though.. But this is what it looks like now..
    Code:
    groups:
        Default:
            default: true
            info:
                prefix: 'Guest'
                suffix:
                build: false
            inheritance:
            permissions:
                - 'essentials.spawn'
        Member:
            default: false
            info:
                prefix: 'Member'
                suffix:
                build: false
            inheritance:
                - Default
            permissions:
                - 'essentials.sethome'
                - 'essentials.home'
                - 'essentials.eco'
                - 'essentials.balance'
                - 'essentials.pay'
                - 'essentials.afk'
                - 'essentials.mail.send'
                - 'essentials.signs.buy.use'
                - 'essentials.signs.sell.use'
        Mod:
            default: false
            info:
                prefix: 'Mod'
                suffix:
                build: true
            inheritance:
                - Member
            permissions:
                - 'essentials.time'
                - 'worldedit.region.set'
                - 'worldedit.wand'
                - 'essentials.signs.buy.create'
                - 'essentials.signs.sell.create'
                - 'essentials.jump'
                - 'essentials.ban'
                - 'essentials.kick'
        Admin:
            default: false
            info:
                prefix: 'Admin'
                suffix:
                build: true
            inheritance:
            permissions:
                - '*'
    
    ##
    # DarkGrave has control over all commands.
    ##
    users:
        DarkGrave:
            group: Admin
            permissions:
        ClintonP929:
            group: Admin
            permissions:
        chillimonkey:
            group: Admin
            permissions:
        GabrielisEpic
            group: Mod
    Oh another thing i forgot to add, It was working earlier, before I edited what people where allowed to do and added the group "Members", sorry if thats a crutial detail, but I did type /permissions -reload all, many times and restarted the server...
     
  8. Offline

    solentice

    I parsed your code above through the YAML parser here: http://yaml-online-parser.appspot.com/
    It gave me an error with the user name GabrielisEpic because you were missing the colon:)after his name. YAML is very strict on correct syntax, and spacing. You should always try to use a parser like the one above to test your YAML code for correct formatting, whenever it seems like the code you changed is not working.
     
  9. Offline

    ClintonP929

    ohh, okay, lol, either way got it to work guys, just reinstalled and re entered everything and it worked good! thanks for the help!
     
Thread Status:
Not open for further replies.

Share This Page