#
# WorldGuard blacklist
#
# The blacklist lets you block actions, blocks, and items from being used.
# You choose a set of "items to affect" and a list of "actions to perform."
#
###############################################################################
#
# Example to block some ore mining and placement:
# [coalore,goldore,ironore]
# on-break=deny,log,kick
# on-place=deny,tell
#
# Events that you can detect:
# - on-break (when a block of this type is about to be broken)
# - on-destroy-with (the item/block held by the user while destroying)
# - on-place (a block is being placed)
# - on-use (an item like flint and steel or a bucket is being used)
# - on-interact (when a block in used (doors, chests, etc.))
# - on-drop (an item is being dropped from the player's inventory)
# - on-acquire (an item enters a player's inventory via some method)
#
# Actions (for events):
# - deny (deny completely, used blacklist mode)
# - allow (used in whitelist mode)
# - notify (notify admins with the 'worldguard.notify' permission)
# - log (log to console/file/database)
# - tell (tell a player that that's not allowed)
# - kick (kick player)
# - ban (ban player)
#
# Options:
# - ignore-groups (comma-separated list of groups to not affect)
# - ignore-perms (comma-separated list of permissions to not affect - make up
#   your very own permissions!)
# - comment (message for yourself that is printed with 'log' and 'notify')
# - message (optional message to show the user instead; %s is the item name)
#
###############################################################################
#
# For more information, see:
# http://wiki.sk89q.com/wiki/WorldGuard/Blacklist
#
###############################################################################
#
# Some examples follow.
# REMEMBER: If a line has # in front, it will be ignored.
#
# Deny lava buckets
[lavabucket,282]
#ignore-perms=wg.allow.use
#ignore-groups=admins,mods
on-use=deny,tell
# Deny water buckets
[326,385]
ignore-perms=wg.allow.water
#ignore-groups=admins,mods
on-use=deny,tell
#deny when chest or dispencer is placed
[54]
ignore-perms=wg.allow.chest
#ignore-groups=admins,mods
on-place=deny
#deny when chest or dispencer is used
[54]
ignore-perms=wg.allow.chest.interact
#ignore-groups=admins,mods
message=You can't use %s until the second day!
on-interact=deny,tell
#deny when chest or dispencer is used
[54]
ignore-perms=wg.allow.chest.break
#ignore-groups=admins,mods
message=You can't break %s until later!
on-break=deny,tell
#Deny when item is placed
[90,116,331,55,75,76,93,94,30,34,52,104,120,43,85,61,121,379]
message=No need to place this item in DvZ!
#ignore-groups=admins,mods
on-place=deny
#Deny when item is placed
[23,73,74,14]
ignore-perms=wg.allow.dispencer
message=Your class has no permission for this item!
#ignore-groups=admins,mods
on-place=deny
#Deny when item is broken
[84]
#ignore-perms=wg.allow.dispencer
#ignore-groups=admins,mods
on-break=deny
#Notify item is broken
[52,56]
#ignore-perms=my.own.madeup.permission
#ignore-groups=admins,mods
on-break=notify
#Deny when item is placed
[116,120,119]
ignore-perms=wg.allow.shrine
message=Zombies must sacrifice on the shrine!
#ignore-groups=admins,mods
on-break=deny,tell
# Deny dropping of records
[2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,115,340,371,52,104]
#ign
#ore-groups=admins,mods
on-drop=deny,tell
# Deny dropping of monsters
[267,261,283,272,262,335,325,364,370,352,375,351,287,65,376,385]
ignore-perms=wg.allow.monsterdrops
#ore-groups=admins,mods
on-drop=deny