Advertisement
jsoichiro

Untitled

Jun 8th, 2019
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 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. # Signs
  18. # Do you want to enable signs?
  19. # You can checkout the project page for info on what this is if you don't know.
  20. # This can save some performance on servers with 250+ players if disabled.
  21. signs-enabled: true
  22.  
  23. # Settings here are for economy integration. playervaults.free bypasses it.
  24. economy:
  25. enabled: false
  26.  
  27. # Cost to create a vault. You can give players playervaults.free to bypass this.
  28. cost-to-create: 100
  29. cost-to-open: 10
  30. refund-on-delete: 50
  31.  
  32. # Blocked Items
  33. # Here you can block items in vaults.
  34. # You can give player's playervaults.bypassblockeditems permission to bypass this list.
  35. # Ops also have an automatic bypass.
  36. # Use material names. This does not work with ids.
  37.  
  38. # Should we even use this? If left to false, the list won't do anything.
  39. blockitems: false
  40.  
  41. # Only effective if the above option is true.
  42. blocked-items:
  43. - PUMPKIN
  44. - DIAMOND_BLOCK
  45.  
  46.  
  47. # Cleanup
  48. # Should we cleanup vaults that haven't been used in awhile?
  49. # Only checks on restarts. Runs on another thread so it won't
  50. # lag the server.
  51. #
  52. # This will not touch the backups folder. You will have to delete those yourself.
  53. cleanup:
  54. enable: false
  55.  
  56. # If a file hasn't been edited for this long, we'll clean it up.
  57. # Time is in days.
  58. lastEdit: 30
  59.  
  60. backups:
  61. # If you don't want any backups created change this to false.
  62. enabled: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement