Deimos161

Untitled

Sep 9th, 2012
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.27 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. #
  44.  
  45. # Actions (for events):
  46.  
  47. # - deny (deny completely, used blacklist mode)
  48.  
  49. # - allow (used in whitelist mode)
  50.  
  51. # - notify (notify admins with the 'worldguard.notify' permission)
  52.  
  53. # - log (log to console/file/database)
  54.  
  55. # - tell (tell a player that that's not allowed)
  56.  
  57. # - kick (kick player)
  58.  
  59. # - ban (ban player)
  60.  
  61. #
  62.  
  63. # Options:
  64.  
  65. # - ignore-groups (comma-separated list of groups to not affect)
  66.  
  67. # - ignore-perms (comma-separated list of permissions to not affect - make up
  68.  
  69. # your very own permissions!)
  70.  
  71. # - comment (message for yourself that is printed with 'log' and 'notify')
  72.  
  73. # - message (optional message to show the user instead; %s is the item name)
  74.  
  75. #
  76.  
  77. ###############################################################################
  78.  
  79. #
  80.  
  81. # For more information, see:
  82.  
  83. # http://wiki.sk89q.com/wiki/WorldGuard/Blacklist
  84.  
  85. #
  86.  
  87. ###############################################################################
  88.  
  89. #
  90.  
  91. # Some examples follow.
  92.  
  93. # REMEMBER: If a line has # in front, it will be ignored.
  94.  
  95. #
  96.  
  97.  
  98.  
  99. # Deny lava buckets
  100.  
  101. #[lavabucket]
  102.  
  103. #ignore-perms=my.own.madeup.permission
  104.  
  105. #ignore-groups=admins,mods
  106.  
  107. #on-use=deny,tell
  108.  
  109.  
  110.  
  111. # Deny some ore
  112.  
  113. #[coalore,goldore,ironore]
  114.  
  115. #ignore-groups=admins,mods
  116.  
  117. #on-break=notify,deny,log
  118.  
  119. [27526:41]
  120. ignore-perms=usage.phstone
  121. ignore-groups='&7[Survivor]&3'
  122. on-use=notify,deny,log,tell
Advertisement
Add Comment
Please, Sign In to add comment