Disabling default Minecraft permissions and commands?

Discussion in 'Bukkit Discussion' started by Rjames426, Mar 21, 2012.

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

    Rjames426

    Is there anyway I can disable the default commands such as /list /kill /me /plugins?
     
  2. Offline

    darrenstraight

  3. Offline

    Rjames426

    What's the permissions node though. . . 8I
     
  4. Offline

    darrenstraight

    The permissions are on that link. :) So:
    • bukkit.command.kill
    • bukkit.command.list
    • bukkit.command.me
    • bukkit.command.plugins
    There's also:
    • bukkit.command.version
    In case you dont want users doing /version.

    Does that make sense?
     
  5. Offline

    Rjames426

    Disabling.. how do I disable them..they are already enabled by default.
     
  6. Offline

    darrenstraight

    Depends on permissions system format, for example with PEX, here's a quick example using all bukkit permissions, two groups/two users and admins don't have op, though Ive left the op permission in. Ive also ignored the default permission of everyone having certain commands such as /tell.

    Notice in PEX, some of the permissions have a "-" in front of them this is what denies that permission, it all really depends on what permissions plugin you are using, what are you using?

    Code:
    users:
        user1:
            permissions: null
            group:
            - Member
        admin1:
            permissions: null
            group:
            - Admin
    groups:
        Member:
            default: true
            prefix: ''
            options:
                rank: '100'
                build: true
            permissions:
            - bukkit.command.tell
            - -bukkit.command.plugins
            - -bukkit.command.version
            - -bukkit.command.kill
            - -bukkit.command.list
            - -bukkit.command.me
        Admin:
            default: true
            prefix: ''
            options:
                rank: '0'
                build: true
            inheritance:
            - Member
            permissions:
            - bukkit.command.plugins
            - bukkit.command.version
            - bukkit.command.kill
            - bukkit.command.list
            - bukkit.command.me
            - bukkit.command.reload
            - bukkit.command.help
            - bukkit.command.kick
            - bukkit.command.ban.player
            - bukkit.command.ban.list
            - bukkit.command.unban.player
            - bukkit.command.ban.ip
            - bukkit.command.unban.ip
            - bukkit.command.op.give
            - bukkit.command.op.take
            - bukkit.command.teleport
            - bukkit.command.give
            - bukkit.command.stop
            - bukkit.command.save.perform
            - bukkit.command.save.disable
            - bukkit.command.save.enable
            - bukkit.command.list
            - bukkit.command.say
            - bukkit.command.whitelist.enable
            - bukkit.command.whitelist.disable
            - bukkit.command.whitelist.add
            - bukkit.command.whitelist.remove
            - bukkit.command.whitelist.list
            - bukkit.command.whitelist.reload
            - bukkit.command.time.add
            - bukkit.command.time.set
            - bukkit.command.gamemode
            - bukkit.command.xp
    
     
  7. Offline

    Rjames426

    That was what I thought just didn't try it yet.. I use PEX (amazing) so that K's that'll help alot
     
  8. Offline

    darrenstraight

    Great I'm glad I could help. :)
     
  9. Offline

    Rjames426

    I tried setting a node in my permissions as "- -bukkit.commands.plugins" and the command is still available to everyone :/
     
  10. Offline

    darrenstraight

    Correct ammount of space characters before the permission?
    No inheritance anywhere that's interfering?
    These members definitely assigned to that group/everyone?
    Tried creating a dummy group and putting yourself in it with no op?
     
  11. Offline

    MrProdigy

    Does this still work ?
     
  12. Offline

    -_Husky_-

    Yes.
     
  13. Offline

    MrProdigy

    Yeah I need a developer. You in ?
     
  14. Offline

    -_Husky_-

    If you're talking to me, too busy, sorry.
     
Thread Status:
Not open for further replies.

Share This Page