Advertisement
Guest User

Blacklist

a guest
Apr 13th, 2012
570
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.24 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. #[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266]
  51. #ignore-groups=admins
  52. #on-use=deny,tell
  53. #on-place=deny,tell
  54. #on-break=deny,tell
  55.  
  56. [8,9,10,11,120,121,256,257,258,259,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,327,344,368,377,381,382,383,384,385]
  57. ignore-groups=admins
  58. on-use=deny,tell
  59. on-place=deny,tell
  60. on-break=deny,tell
  61. on-drop=deny,tell
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement