Solved /plugins

Discussion in 'Bukkit Help' started by stfupls, Jul 4, 2013.

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

    stfupls

    Hello communityyyyyy! =)

    Does anybody know how to disable players doing the ''/plugins'' commands.
    So they have no permission to check the plugins I have?
     
  2. Offline

    Necrodoom

    negate bukkit.command.plugins
     
  3. Offline

    stfupls

    I'm sorry I understand its a permission node but to I need to add this to every group who are not allowed to see it? Or something different?
     
  4. Offline

    sillyrosster

    Set it as a negative node for the default group and every group after that should inherit the default group. If a group does not inherit the default group and you want them not to be able to do /plugins, then you'll have to add it for them as well.
     
  5. Offline

    stfupls

    Is this right?
    Code:
    groups:
      default:
        default: true
        prefix: '&5[Guest]'
        options:
          rank: '1000'
      permissions:
      - bukkit.command.plugins
      - blabla.blabla
      - blabla.blabla
    Bump

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jun 3, 2016
  6. No, like this

    Code:
    groups:
      default:
        default: true
        prefix: '&5[Guest]'
        options:
          rank: '1000'
      permissions:
      - -bukkit.command.plugins
      - blabla.blabla
      - blabla.blabla
     
  7. Offline

    stfupls

    Thanks mate this helps me a lot!
    So now I just interact all ranks or how its called to default and ill be fine?
    Or do I need to set this permission for all ranks?
     
  8. Inheritance* :-P

    Like this

    Code:
    groups:
      default:
        default: true
        prefix: '&5[Guest]'
        options:
          rank: '1000'
        permissions:
        - -bukkit.command.plugins
        - blabla.blabla
        - blabla.blabla
      member:
        default: false
        prefix: ''
        inheritance:
        - default
        permissions:
        -blabla.bla
    Now the rank member will have all the permissions that default have
     
  9. Offline

    stfupls

    Thanks soooooooooooooooooooooooooooooooooooooooooooooooo much!
     
  10. You're welcome :)
     
Thread Status:
Not open for further replies.

Share This Page