Advertisement
Guest User

Untitled

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