Advertisement
Guest User

Untitled

a guest
Jan 12th, 2013
1,021
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. # - log (log to console/file/database)
  2. # - tell (tell a player that that's not allowed)
  3. # - kick (kick player)
  4. # - ban (ban player)
  5. #
  6. # Options:
  7. # - ignore-groups (comma-separated list of groups to not affect)
  8. # - ignore-perms (comma-separated list of permissions to not affect - make up
  9. # your very own permissions!)
  10. # - comment (message for yourself that is printed with 'log' and 'notify')
  11. # - message (optional message to show the user instead; %s is the item name)
  12. #
  13. ###############################################################################
  14. #
  15. # For more information, see:
  16. # http://wiki.sk89q.com/wiki/WorldGuard/Blacklist
  17. #
  18. ###############################################################################
  19. #
  20. # Some examples follow.
  21. # REMEMBER: If a line has # in front, it will be ignored.
  22. #
  23.  
  24. # Deny lava buckets
  25. #[lavabucket]
  26. #ignore-perms=my.own.madeup.permission
  27. #ignore-groups=admins,mods
  28. #on-use=deny,tell
  29.  
  30. # Deny some ore
  31. #[coalore,goldore,ironore]
  32. #ignore-groups=admins,mods
  33. #on-break=notify,deny,log
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement