Advertisement
Guest User

Ace

a guest
Apr 27th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 KB | None | 0 0
  1. #
  2.  
  3. # WorldGuard blacklist
  4.  
  5. #
  6.  
  7. # The blacklist lets you block actions, blocks, and items from being used.
  8.  
  9. # You choose a set of "items to affect" and a list of "actions to perform."
  10.  
  11. #
  12.  
  13. ###############################################################################
  14.  
  15. #
  16.  
  17. # Example to block some ore mining and placement:
  18.  
  19. # [coalore,goldore,ironore]
  20.  
  21. # on-break=deny,log,kick
  22.  
  23. # on-place=deny,tell
  24.  
  25. #
  26.  
  27. # Events that you can detect:
  28.  
  29. # - on-break (when a block of this type is about to be broken)
  30.  
  31. # - on-destroy-with (the item/block held by the user while destroying)
  32.  
  33. # - on-place (a block is being placed)
  34.  
  35. # - on-use (an item like flint and steel or a bucket is being used)
  36.  
  37. # - on-interact (when a block in used (doors, chests, etc.))
  38.  
  39. # - on-drop (an item is being dropped from the player's inventory)
  40.  
  41. # - on-acquire (an item enters a player's inventory via some method)
  42.  
  43. # - on-dispense (a dispenser is about to dispense an item)
  44.  
  45. #
  46.  
  47. # Actions (for events):
  48.  
  49. # - deny (deny completely, used blacklist mode)
  50.  
  51. # - allow (used in whitelist mode)
  52.  
  53. # - notify (notify admins with the 'worldguard.notify' permission)
  54.  
  55. # - log (log to console/file/database)
  56.  
  57. # - tell (tell a player that that's not allowed)
  58.  
  59. # - kick (kick player)
  60.  
  61. # - ban (ban player)
  62.  
  63. #
  64.  
  65. # Options:
  66.  
  67. # - ignore-groups (comma-separated list of groups to not affect)
  68.  
  69. # - ignore-perms (comma-separated list of permissions to not affect - make up
  70.  
  71. # your very own permissions!)
  72.  
  73. # - comment (message for yourself that is printed with 'log' and 'notify')
  74.  
  75. # - message (optional message to show the user instead; %s is the item name)
  76.  
  77. #
  78.  
  79. ###############################################################################
  80.  
  81. #
  82.  
  83. # For more information, see:
  84.  
  85. # http://wiki.sk89q.com/wiki/WorldGuard/Blacklist
  86.  
  87. #
  88.  
  89. ###############################################################################
  90.  
  91. #
  92.  
  93. # Some examples follow.
  94.  
  95. # REMEMBER: If a line has # in front, it will be ignored.
  96.  
  97. #
  98.  
  99.  
  100.  
  101. Deny lava buckets
  102.  
  103. [ender_chest]
  104.  
  105. ignore-perms=enderchest.use
  106.  
  107. ignore-groups=admins,mods
  108.  
  109. on-use=deny,tell
  110.  
  111.  
  112.  
  113. # Deny some ore
  114.  
  115. #[coalore,goldore,ironore]
  116.  
  117. #ignore-groups=admins,mods
  118.  
  119. #on-break=notify,deny,log
  120.  
  121.  
  122.  
  123. # Some funky data value tests
  124.  
  125. #[wood:0;>=2]
  126.  
  127. #ignore-groups=admins,mods
  128.  
  129. #on-break=notify,deny,log
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement