Question AreaShop in conflict with WorldGuard

Discussion in 'Bukkit Help' started by hoeghh, Jan 27, 2019.

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

    hoeghh

    Hi,

    Im building a minecraft server for my two girls.
    I'm trying to create a hotel where people can rent a room.

    It works, sort of. But they can't place or break anything.
    I noticed that AreaShop is specifying what others CANT, instead of what the member CAN.

    My __global__ has restriction so that people can't reck the world.

    I found this in the AreaShop config :

    flagProfile:
    ALL: # Flags that should always be applied
    priority: 10
    owners: ''
    members: ''
    interact: 'deny g:non_members' # Only allow region members/owners to use things in the region (chests, furnace, animals, etc.)
    use: 'deny g:non_members'
    build: 'deny g:non_members'
    block-break: 'deny g:non_members'
    block-place: 'deny g:non_members'


    Would I be able to do the inverse?
    Like this?

    flagProfile:
    ALL: # Flags that should always be applied
    priority: 10
    owners: ''
    members: ''
    interact: 'allow g:members' # Only allow region members/owners to use things in the region (chests, furnace, animals, etc.)
    use: 'allow g:members'
    build: 'allow g:members'
    block-break: 'allow g:members'
    block-place: 'allow g:members'


    With the current settings to __global__ (with a priority less than 10):
    pvp: DENY, block-break: DENY, block-place: DENY, build: DENY



    ------------------------------------------------

    Fixed it.

    __global__ is set with flags : pvp deny and passthrough deny

    And here's my AreaShop default.yml section:
    flagProfile:
    ALL: # Flags that should always be applied
    priority: 10
    owners: ''
    members: ''
    interact: 'allow g:members' # Only allow region members/owners to use things in the region (chests, furnace, animals, etc.)
    use: 'allow g:members'
    build: 'allow g:members'
    block-break: 'allow g:members'
    block-place: 'allow g:members'
    .
    .
    .

    Works. Now i'll do some more testing. Need to test teams mates.

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
    Thanks :)
     
    Last edited: Jan 27, 2019
Thread Status:
Not open for further replies.

Share This Page