Advertisement
Guest User

Untitled

a guest
Jul 26th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.28 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. Bloquear Grief
  51. [8,9,7,19,79,40,39,6,6:1,6:2,6:3,327,326]
  52. ignore-perms=my.own.madeup.permission
  53. ignore-groups=admins,mods
  54. on-place=deny
  55.  
  56. Bloquear DUPs
  57. [23,29,33,46,77,131,143,147,148,158,331,356,404,355,333,328,329,342,343,398,407,408,54,66,27,28,157,70,72]
  58. ignore-perms=my.own.madeup.permission
  59. ignore-groups=admins,mods
  60. on-use=deny
  61.  
  62.  
  63. Bloquear FUNIL
  64. [154]
  65. ignore-perms=my.own.madeup.permission
  66. ignore-groups=admins,mods
  67. on-interact=deny
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement