Advertisement
Guest User

Untitled

a guest
Apr 6th, 2013
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.46 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
  60.  
  61. Deny lava
  62. [10]
  63. #ignore-perms=my.own.madeup.permission
  64. #ignore-groups=admins,mods
  65. on-use=deny,tell
  66.  
  67. Deny lava
  68. [11]
  69. #ignore-perms=my.own.madeup.permission
  70. #ignore-groups=admins,mods
  71. on-use=deny,tell
  72.  
  73. Deny water buckets
  74. [waterbucket]
  75. #ignore-perms=my.own.madeup.permission
  76. #ignore-groups=admins,mods
  77. on-use=deny,tell
  78.  
  79. Deny water
  80. [8]
  81. #ignore-perms=my.own.madeup.permission
  82. #ignore-groups=admins,mods
  83. on-use=deny,tell
  84.  
  85. Deny water
  86. [9]
  87. #ignore-perms=my.own.madeup.permission
  88. #ignore-groups=admins,mods
  89. on-use=deny,tell
  90.  
  91. Deny bedrock
  92. [bedrock]
  93. #ignore-perms=my.own.madeup.permission
  94. #ignore-groups=admins,mods
  95. on-use=deny,tell
  96.  
  97. Deny fire
  98. [51]
  99. #ignore-perms=my.own.madeup.permission
  100. #ignore-groups=admins,mods
  101. on-use=deny,tell
  102.  
  103. Deny flint and steel
  104. [259]
  105. #ignore-perms=my.own.madeup.permission
  106. #ignore-groups=admins,mods
  107. on-use=deny,tell
  108.  
  109. Deny fire charge
  110. [385]
  111. #ignore-perms=my.own.madeup.permission
  112. #ignore-groups=admins,mods
  113. on-use=deny,tell
  114.  
  115. Deny spawn egg
  116. [383]
  117. #ignore-perms=my.own.madeup.permission
  118. #ignore-groups=admins,mods
  119. on-use=deny,tell
  120.  
  121. Deny skulls
  122. [397]
  123. #ignore-perms=my.own.madeup.permission
  124. #ignore-groups=admins,mods
  125. on-use=deny,tell
  126.  
  127. Deny tnt
  128. [46]
  129. #ignore-perms=my.own.madeup.permission
  130. #ignore-groups=admins,mods
  131. on-use=deny,tell
  132.  
  133. Deny dispenser
  134. [23]
  135. #ignore-perms=my.own.madeup.permission
  136. #ignore-groups=admins,mods
  137. on-use=deny,tell
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement