crowebird / Bukkit

1 stars 0 forks source link

interaction with doors not working in a zone #3

Closed sunkid closed 13 years ago

sunkid commented 13 years ago

I am having trouble setting up a zone and allowing folks to use only doors and chests and to place chests. Here is the config I am using:

groups: User: allow: item: [] interact: [54,64] block: [54] nodes: prevent: ['block.damage', 'block.place', 'block.ignite', 'entity.creeper', 'player.damage.cause'] Moderator: {} Admin: {}

Players in the User group can not do anything in the zone, it seems.

crowebird commented 13 years ago

fixed

sunkid commented 13 years ago

hmmm... not for me using the latest github code :(

crowebird commented 13 years ago

using this config:

creator: 'joe'
parent: null
points: ['-8,5',
  '-4,5',
  '-4,-6',
  '-8,-6']
groups:
  Admins:
    allow:
      item: []
      interact: [54,64]
      block: [54]
    nodes:
      prevent: ['block.damage',
        'block.interact',
        'block.place',
        'block.ignite',
        'entity.creeper',
        'player.damage.cause']
  Moderator: {}
  Admin: {}

(with username 'joe' just so I could test and it would not match me.) I can only place chests (and doors due to a bukkit limitation) and can interact with the chest and doors, but cannot do anything else... (with my person in group Admins)

sunkid commented 13 years ago

ahh... the username change may have made a difference.

That said, I definitely need to use

Moderator:
    prevent: []

to enable that group to do everything