Permissions? PLEASE HELP

Discussion in 'Bukkit Help' started by BI0, Sep 1, 2011.

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

    BI0

    I have DefaultPermissions, Permissions and iChat.

    I have four groups, Guest, Veteran, Moderator and Admin.
    For some reason, my moderators aren't able to ban, or kick or anything.
    Some of my guests can't use /me or other simple commands.
    PLEASE HELP. I have no idea how to fix this. I have set my permissions in my groups folder for permissions. Here is a code snippet.

    My permissions groups folder:
    Code:
    groups:
        Guest:
            default: true
            info:
                prefix: '&f'
                suffix: '&f'
                build: true
            inheritance:
            permissions:
            - lockette.user.create.*
            - craftbukkit.command.me
            - craftbukkit.command.help
            - modplugin.list
            - modplugin.plugins
            - minecraft.list
            - minecraft.help
            - modplugin.help
            - modplugin.me
            - minecraft.me
            - craftbukkit.command.tell
            - craftbukkit.command.kill
            - minecraft.plugins
            - minecraft.tell
            - craftbukkit.command.tell
        Veteran:
            default: false
            info:
                prefix: '&a'
                suffix: '&f'
                build: true
            inheritance:
            - Guest
            permissions:
        Moderator:
            default: false
            info:
                prefix: '&9'
                suffix: '&f'
                build: true
            inheritance:
            - Guest
            permissions:
            - modplugin.ban
            - modplugin.kick
            - modplugin.unban
            - lockette.user.create.*
            - lockette.admin.snoop
            - minecraft.whitelist.add
            - craftbukkit.command.whitelist
            - craftbukkit.command.whitelist.remove
            - craftbukkit.command.whitelist.reload
            - craftbukkit.command.whitelist.list
            - craftbukki.command.ban
            - craftbukkit.command.ban.player
            - craftbukkit.command.ban.ip
            - craftbukkit.command.kick
        Admins:
            default: false
            info:
                prefix: '&4'
                suffix: '&f'
                build: true
            inheritance:
            - Moderator
            permissions:
            - '*'
            - lockette.user.create.*
            - lockette.admin.snoop
            - lockette.admin.break
            - craftbukkit.command.save.enable
            - craftbukkit.command.save.peform
    
    My Default Permissions config:
    Code:
    commands:
        pardon: true
        ban: true
        stop: false
        kick: true
        save-off: false
        op: true
        plugins: true
        give: false
        save-all: true
        tp: true
        ban-ip: true
        list: true
        version: false
        time: false
        help: true
        save-on: false
        say: true
        me: true
        deop: true
        tell: true
        '?': false
        reload: false
        pardon-ip: true
        whitelist: true
    usebukkitpermissions: false
    
    Please help! Even if its only an assumption, this has been annoying me for a while.
     
  2. Offline

    Sondre Berntsen

    Well, as far as I can see, you're missing the ' ' before and after the permission;

    It should like this (in my experience though):

    Code:
        Admins:
            default: false
            info:
                prefix: '&4'
                suffix: '&f'
                build: true
            inheritance:
            - Moderator
            permissions:
            - '*'
            - 'lockette.user.create.*'
            - 'lockette.admin.snoop'
            - 'lockette.admin.break'
            - 'craftbukkit.command.save.enable'
            - 'craftbukkit.command.save.peform'
    
    I think thats the only problem there.
     
  3. Offline

    BI0

    thank you. ill try.

    no difference has been made. it still doesn't work. :(
    any other suggestions?

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

    Sondre Berntsen

    Well, you could try to post your error log from the error.log file, maybe that'll help us help you ;)
     
  5. Offline

    slater96

    What other plugins are you using?
    If you are using essentials add:
    - essentials.kick

    If you want upload all your server files and I will look over it and try and fix it for you.
     
Thread Status:
Not open for further replies.

Share This Page