Solved [PEX] Multiple worlds gone wrong... really wrong

Discussion in 'Bukkit Help' started by FisherJack, Apr 5, 2014.

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

    FisherJack

    Hello, i can't really figure out how to set up multiple worlds for a group. I've tried to search the web, but that didn't help me.

    I tried this code, but it's not working for some reason. Something is broken in the layout of this code, but i have no clue :( (Newb)

    Code:
    groups:
      Testgroup:
        default: true
        permissions:
        Worlds:
          World1:
            permissions:
        World2:
            permissions:
            - modifyworld.*
          World3: 
            permissions:
            - modifyworld.*
        prefix: '&7'
        options:
          build: true
    Thank you Jaguar Jo
     
  2. Offline

    JaguarJo

    FisherJack Your World2 is out of alignment. It should be indented the same amount as World1 and World3. Also, your Worlds: category line needs to be all lower case. Like this:
    Code:
    groups:
      Testgroup:
        default: true
        permissions: []
        worlds:
          World1:
            permissions: []
          World2:
            permissions:
            - modifyworld.*
          World3: 
            permissions:
            - modifyworld.*
        prefix: '&7'
        options:
          build: true
     
    FisherJack likes this.
Thread Status:
Not open for further replies.

Share This Page