Advertisement
Guest User

WG Blacklist

a guest
Apr 20th, 2013
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1.  
  2. # - on-drop (an item is being dropped from the player's inventory)
  3. # - on-acquire (an item enters a player's inventory via some method)
  4. #
  5. # Actions (for events):
  6. # - deny (deny completely, used blacklist mode)
  7. # - allow (used in whitelist mode)
  8. # - notify (notify admins with the 'worldguard.notify' permission)
  9. # - log (log to console/file/database)
  10. # - tell (tell a player that that's not allowed)
  11. # - kick (kick player)
  12. # - ban (ban player)
  13. #
  14. # Options:
  15. # - ignore-groups (comma-separated list of groups to not affect)
  16. # - ignore-perms (comma-separated list of permissions to not affect - make up
  17. # your very own permissions!)
  18. # - comment (message for yourself that is printed with 'log' and 'notify')
  19. # - message (optional message to show the user instead; %s is the item name)
  20. #
  21. ###############################################################################
  22. #
  23. # For more information, see:
  24. # http://wiki.sk89q.com/wiki/WorldGuard/Blacklist
  25. #
  26. ###############################################################################
  27. #
  28. # Some examples follow.
  29. # REMEMBER: If a line has # in front, it will be ignored.
  30. #
  31.  
  32. # Deny lava buckets
  33. #[lavabucket]
  34. #ignore-perms=my.own.madeup.permission
  35. #ignore-groups=admins,mods
  36. #on-use=deny,tell
  37.  
  38. # Deny some ore
  39. #[coalore,goldore,ironore]
  40. #ignore-groups=admins,mods
  41. #on-break=notify,deny,log
  42.  
  43. [46,407]
  44. ignore-groups=Co-Owner,Owner
  45. on-break=notify,deny
  46.  
  47. [383:50,383:51,383:52,383:53,383:54,383:55,383:56,383:57,383:58,383:59,383:60,383:61,383:62,383:63,383:64,383:65,383:66,383:90,383:91,383:92,383:93,383:94,383:95,383:96,383:97,383:98,383:99,383:120]
  48. ignore-groups=Co-Owner,Owner
  49. on-break=notify,deny
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement