Advertisement
HYPExMon5ter

pv config

Jan 9th, 2017
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. # PlayerVaults by https://github.com/drtshock/PlayerVaults/graphs/contributors
  2. # http://dev.bukkit.org/bukkit-plugins/playervaults/
  3. # Made with love :3
  4.  
  5. # Whether or not you want to check for updates.
  6. # Will not download an update by default, that is your job :)
  7. # We do not break between minecraft versions so auto updating should not be an issue.
  8. # But it's always a smart idea to read changelogs and such first :)
  9. check-update: true
  10. download-update: false
  11.  
  12. # Debug mode
  13. # This will print lots of spammy stuff to console.
  14. # Should probably only enabled this if you're working with drtshock to fix something.
  15. debug: false
  16.  
  17. # Settings here are for economy integration. playervaults.free bypasses it.
  18. economy:
  19. enabled: false
  20.  
  21. # Cost to create a vault. You can give players playervaults.free to bypass this.
  22. cost-to-create: 100
  23. cost-to-open: 10
  24. refund-on-delete: 50
  25.  
  26. # Blocked Items
  27. # Here you can block items in vaults.
  28. # You can give player's playervaults.bypassblockeditems permission to bypass this list.
  29. # Ops also have an automatic bypass.
  30. # Use material names. This does not work with ids.
  31.  
  32. # Should we even use this? If left to false, the list won't do anything.
  33. blockitems: false
  34.  
  35. # Only effective if the above option is true.
  36. blocked-items:
  37. - PUMPKIN
  38. - DIAMOND_BLOCK
  39.  
  40.  
  41. # Cleanup
  42. # Should we cleanup vaults that haven't been used in awhile?
  43. # Only checks on restarts. Runs on another thread so it won't
  44. # lag the server.
  45. #
  46. # This will not touch the backups folder. You will have to delete those yourself.
  47. cleanup:
  48. enable: false
  49.  
  50. # If a file hasn't been edited for this long, we'll clean it up.
  51. # Time is in days.
  52. lastEdit: 30
  53.  
  54. backups:
  55. # If you don't want any backups created change this to false.
  56. enabled: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement