55 lines
1.8 KiB
YAML
55 lines
1.8 KiB
YAML
# PlayerVaults
|
|
# Created by: https://github.com/drtshock/PlayerVaults/graphs/contributors/
|
|
# Resource page: https://www.spigotmc.org/resources/51204/
|
|
# Discord server: https://discordapp.com/invite/JZcWDEt/
|
|
# Made with love <3
|
|
|
|
# Debug Mode
|
|
# This will print everything the plugin is doing to console.
|
|
# You should only enable this if you're working with a contributor to fix something.
|
|
debug: false
|
|
|
|
# Language
|
|
# This determines which language file the plugin will read from.
|
|
# Valid options are (don't include .yml): bulgarian, dutch, english, german, turkish
|
|
language: english
|
|
|
|
# Signs
|
|
# This will determine whether vault signs are enabled.
|
|
# If you don't know what this is or if it's for you, see the resource page.
|
|
# Reminder: This is only checked during startup.
|
|
signs-enabled: false
|
|
|
|
# Economy
|
|
# These are all of the settings for the economy integration. (Requires Vault)
|
|
# Bypass permission is: playervaults.free
|
|
economy:
|
|
enabled: false
|
|
cost-to-create: 100
|
|
cost-to-open: 10
|
|
refund-on-delete: 50
|
|
|
|
# Blocked Items
|
|
# This will allow you to block specific materials from vaults.
|
|
# Bypass permission is: playervaults.bypassblockeditems
|
|
blockitems: true
|
|
|
|
# Material list for blocked items (does not support ID's), only effective if the feature is enabled.
|
|
# If you don't know material names: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html
|
|
blocked-items:
|
|
- PUMPKIN
|
|
- DIAMOND_BLOCK
|
|
|
|
# Cleanup
|
|
# Enabling this will purge vaults that haven't been touched in the specified time frame.
|
|
# Reminder: This is only checked during startup.
|
|
# This will not lag your server or touch the backups folder.
|
|
# The time format is in days.
|
|
cleanup:
|
|
enable: false
|
|
lastEdit: 30
|
|
|
|
# Backups
|
|
# Enabling this will create backups of vaults automagically.
|
|
backups:
|
|
enabled: true |