Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.00 KB | None | 0 0
  1. #
  2. # This is the blacklist for WorldGuard. The blacklist allows you to perform
  3. # actions depending on an item or block ID. Comments start with # and they
  4. # are ignored so you can put your own notes.
  5. #
  6. # --------------------------------------------------------------------------
  7. #
  8. # WARNING:
  9. # Remember to check the compatibility spreadsheet for WorldGuard to see
  10. # if any events or actions are currently broken in your version of Bukkit.
  11. #
  12. # --------------------------------------------------------------------------
  13. #
  14. # Format:
  15. # [item1,item2]
  16. # option1=options
  17. # event1=whatToDo1,whatToDo2,whatToDo3
  18. # event2=whatToDo1,whatToDo2
  19. #
  20. # Example to block some ore mining and placement:
  21. # [coalore,goldore,ironore]
  22. # on-break=deny,log,kick
  23. # on-place=deny,tell
  24. #
  25. # Options:
  26. # - ignore-groups (comma-separated list of groups to not affect)
  27. # - comment (message for yourself that is printed with 'log' and 'notify')
  28. # - message (optional message to show the user instead; %s is the item name)
  29. #
  30. # Events:
  31. # - on-break (when a block of this type is about to be broken)
  32. # - on-destroy-with (the item/block held by the user while destroying)
  33. # - on-place (a block is being placed)
  34. # - on-use (an item like flint and steel or a bucket is being used)
  35. # - on-interact (when a block in used (doors, chests, etc.))
  36. # - on-drop (an item is being dropped from the player's inventory)
  37. # - on-acquire (an item enters a player's inventory via some method)
  38. #
  39. # Actions (for events):
  40. # - deny (deny completely)
  41. # - notify (notify admins)
  42. # - log (log to console/file/database)
  43. # - tell (tell a player that that's not allowed)
  44. # - kick (kick player)
  45. # - ban (ban player)
  46. #
  47. # Users with the /worldguardnotify permission will receive notifications.
  48. #
  49. # -------------
  50. #
  51. # You can have the same block or item used in two different sections and
  52. # they will both apply:
  53. #
  54. # [goldblock]
  55. # ignore-groups=vip
  56. # on-break=deny
  57. # [goldblock]
  58. # ignore-groups=admins
  59. # on-break=tell
  60. #
  61. # However, some events override others. For example, if you disable both
  62. # usage of the diamond pickaxe (with the on-destroy-with event) and
  63. # destruction of gold blocks (with the on-break event) and a player tries
  64. # to destroy a gold block with a diamond pickaxe, because the
  65. # on-destroy-with event comes first, the rules for the gold block
  66. # will not be applied (but the player will be denied nevertheless).
  67. #
  68. # --------------------------------------------------------------------------
  69. #
  70. # Some examples follow.
  71. #
  72. # REMEMBER: If a line has # in front, it will be ignored.
  73. #
  74. # --------------------------------------------------------------------------
  75.  
  76. # Deny lava buckets
  77. #[lavabucket]
  78. #ignore-groups=admins,mods
  79. #on-use=deny,tell,notify
  80.  
  81. # Deny some ore
  82. #[coalore,goldore,ironore]
  83. #ignore-groups=admins,mods
  84. #on-break=notify,deny,log
  85.  
  86.  
  87. [327,326,49,46,7,9,8,10,11]
  88. ignore-groups=Admin,Moderator,SuperAdmin,Owner
  89. on-acquire=deny,tell,notify
  90.  
  91.  
  92. [327,326,49}
  93. ignore-groups=Trusted,Veteran
  94. on-use=deny,tell
  95. on-acquire=deny,tell
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement