Help per world build permissions

Discussion in 'Bukkit Help' started by LavaAndy, Feb 25, 2014.

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

    LavaAndy

    I was wondering how do i do per world build permissions.I am using Multiverse and PEX
     
  2. Offline

    JaguarJo

    Code:
    groups:
      sample:
        default: true
        prefix: ''
        suffix: ''
        permissions:
        - plugin.permission.node
        - plugin.another.node
        - plugin.more.nodes
        worlds:
          WorldName1:
            permissions:
            - essentials.build
            - modifyworld.*
          WorldName2:
            permissions:
            - -essentials.build
            - -modifyworld.*
        inheritance: []
        options:
          rank: '500'
    LavaAndy Okay, so in this example I made up, sample group is allowed to build in WorldName1 but not allowed to build in WorldName2. I used build nodes for Essentials and Modifyworld because I don't know which of them you are using, but both plugins control build rights. All of the permission nodes listed in the top part for sample group are global permissions, meaning they can use those in ALL the worlds. Only put the world specific permissions in the worlds: section.
     
  3. Offline

    LavaAndy

    Thanks i will give this a try
     
Thread Status:
Not open for further replies.

Share This Page