PEX default problem

Discussion in 'Bukkit Help' started by usainphelps, Jun 22, 2014.

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

    usainphelps

    I am setting up a server using PermissionsEx, I know how to set up groups and add permissions and all that, but I came a across an issue while I was setting up the default group. I noticed when new players joined for the first time, they would not have the "default" rank. I would have to set it up manually. If there is a way to do this automatically please tell me. This is one of the final things I need to work out if I am going to launch my server! Any help is greatly appreciated.

    Here is my PEX permissions file for default

    groups:
    default:
    default: true
    permissions:
    - quicksand.join
    - spleef.join.5
    - spleef.join.4
    - spleef.join.3
    - spleef.join.2
    - spleef.join.1
    - spleef.join
    - essentials.warp
    - essentials.help
    - modifyworld.chat
    - essentials.warps.spawn
    - essentials.warps.mg
    - modifyworld.*
    - signs.use.disposal
    options:
    prefix: '&0[&6Guest&0]&3'
    worlds:
    '&3':
    options:
    prefix: '&0[&6Guest&0]'
     
  2. Offline

    JaguarJo

    usainphelps If you're using PEX version 1.22, the default: true line now goes under the options section with prefix. They just changed that in this last version, so not all of the documentation has caught up with the change yet. Also, unless you actually have a world named &3, which I would be surprised if you do, you probably want to remove that worlds section. Looks like it got added by mistake when you added the prefix with an in-game command. Try this:
    Code:
    groups:
      default:
        permissions:
        - quicksand.join
        - spleef.join.5
        - spleef.join.4
        - spleef.join.3
        - spleef.join.2
        - spleef.join.1
        - spleef.join
        - essentials.warp
        - essentials.help
        - modifyworld.chat
        - essentials.warps.spawn
        - essentials.warps.mg
        - modifyworld.*
        - signs.use.disposal
        options:
          prefix: '&0[&6Guest&0]&3'
          default: true
     
  3. Offline

    usainphelps

    it worked!! thanks for the help
     
    JaguarJo likes this.
Thread Status:
Not open for further replies.

Share This Page