[WorldGuard] Cannot get users to edit or build in their regions

Discussion in 'Bukkit Help' started by linusagren, Jul 25, 2014.

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

    linusagren

    Solved: Found out that I had my spawn in the town which prevented the players from building.

    Heyhey!
    So I have a region called "blue".

    Code:
        blue:
            type: cuboid
            min: {x: -9.0, y: 60.0, z: 657.0}
            max: {x: -12.0, y: 69.0, z: 658.0}
            priority: 1
            flags: {passthrough: allow, build: allow}
            owners:
                players: [ankfisk]
            members:
                players: [ankfisk]
            parent: town
    And a region called "Town" overlapping "blue".
    Code:
        town:
            type: cuboid
            min: {x: -15.0, y: 55.0, z: 579.0}
            max: {x: 66.0, y: 110.0, z: 682.0}
            priority: 0
            flags: {farewell: See you again next time!, greeting: Welcome to Broodie Greger town!,
                tnt: deny, enderman-grief: deny}
            owners: {}
            members: {}
    I use PermissionsEx for Perms, and the player is within the "default" group:
    Code:
    groups:
      default:
        permissions:
        - modifyworld.*
        - clicksort.commands.click
        - clicksort.commands.shiftclick
        - clicksort.commands.sort
        - clicksort.sort
        - worldguard.region.select.own.*
        - worldguard.region.info.own.*
        - worldguard.region.addowner.own.*
        - worldguard.region.removeowner.own.*
        - worldguard.region.addmember.own.*
        - worldguard.region.flag.regions.own.*
        options:
          default: true
    Still he cannot edit his own region. Not add, or remove any blocks. The prio is set higher (also tested lower) than town, he is the owner and member of his own claim, can edit everything else outside the regions.
    A little assistance please. :)
     
  2. Offline

    Emerdisk

    Try typing build: true under options like this:

    Code:
    groups:
      default:
        permissions:
        - modifyworld.*
        - clicksort.commands.click
        - clicksort.commands.shiftclick
        - clicksort.commands.sort
        - clicksort.sort
        - worldguard.region.select.own.*
        - worldguard.region.info.own.*
        - worldguard.region.addowner.own.*
        - worldguard.region.removeowner.own.*
        - worldguard.region.addmember.own.*
        - worldguard.region.flag.regions.own.*
        options:
          default: true
          build: true
     
  3. Offline

    saiismad823

    linusagren If I understand correctly you are trying to make a region inside another region aka sub regions. Correct?
    If so then you need to set the town region as a parent region of blue. To do this type: /rg setparent blue town

    If you are still confused here is a youtube video.
     
  4. Offline

    linusagren

    I remembered I had moved the spawn to my town and that was the issue that prevented players from building in their regions. Nevertheless, thank you for the effort fellas. I appreciate it!
     
Thread Status:
Not open for further replies.

Share This Page