Advertisement
Guest User

blacklist

a guest
Jun 21st, 2012
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. #
  2. # WorldGuard blacklist
  3. #
  4. # The blacklist lets you block actions, blocks, and items from being used.
  5. # You choose a set of "items to affect" and a list of "actions to perform."
  6. #
  7. ###############################################################################
  8. #
  9. # Example to block some ore mining and placement:
  10. # [coalore,goldore,ironore]
  11. # on-break=deny,log,kick
  12. # on-place=deny,tell
  13. #
  14. # Events that you can detect:
  15. # - on-break (when a block of this type is about to be broken)
  16. # - on-destroy-with (the item/block held by the user while destroying)
  17. # - on-place (a block is being placed)
  18. # - on-use (an item like flint and steel or a bucket is being used)
  19. # - on-interact (when a block in used (doors, chests, etc.))
  20. # - on-drop (an item is being dropped from the player's inventory)
  21. # - on-acquire (an item enters a player's inventory via some method)
  22. #
  23. # Actions (for events):
  24. # - deny (deny completely, used blacklist mode)
  25. # - allow (used in whitelist mode)
  26. # - notify (notify admins with the 'worldguard.notify' permission)
  27. # - log (log to console/file/database)
  28. # - tell (tell a player that that's not allowed)
  29. # - kick (kick player)
  30. # - ban (ban player)
  31. #
  32. # Options:
  33. # - ignore-groups (comma-separated list of groups to not affect)
  34. # - ignore-perms (comma-separated list of permissions to not affect - make up
  35. # your very own permissions!)
  36. # - comment (message for yourself that is printed with 'log' and 'notify')
  37. # - message (optional message to show the user instead; %s is the item name)
  38. #
  39. ###############################################################################
  40. #
  41. # For more information, see:
  42. # http://wiki.sk89q.com/wiki/WorldGuard/Blacklist
  43. #
  44. ###############################################################################
  45. #
  46. # Some examples follow.
  47. # REMEMBER: If a line has # in front, it will be ignored.
  48. #
  49.  
  50. # Deny lava buckets
  51. #[lavabucket]
  52. #ignore-perms=my.own.madeup.permission
  53. #ignore-groups=admins,mods
  54. #on-use=deny,tell
  55.  
  56. # Deny some ore
  57. #[coalore,goldore,ironore]
  58. #ignore-groups=admins,mods
  59. #on-break=notify,deny,log
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement