mirror of
https://github.com/BentoBoxWorld/BentoBox.git
synced 2024-11-01 00:10:40 +01:00
89 lines
3.9 KiB
YAML
89 lines
3.9 KiB
YAML
# BentoBox Configuration FC
|
|
# This config file is dynamic and saved when the server is shutdown.
|
|
# You cannot edit it while the server is running because changes will
|
|
# be lost! Use in-game settings GUI or edit when server is offline.
|
|
#
|
|
general:
|
|
# BentoBox uses bStats.org to get global data about the plugin to help improving it.
|
|
# bStats has nearly no effect on your server's performance and the sent data is completely
|
|
# anonymous so please consider twice if you really want to disable it.
|
|
metrics: true
|
|
# Check for updates - this will tell Ops and the console if there is a new
|
|
# version available. It contacts dev.bukkit.org to request the latest version
|
|
# info. It does not download the latest version or change any files
|
|
check-updates: true
|
|
# Default language for new players.
|
|
# This is the filename in the locale folder without .yml.
|
|
# If this does not exist, the default en-US will be used.
|
|
default-language: en-US
|
|
# Use economy or not. If true, an economy plugin is required. If false, no money is used or give.
|
|
# If there is no economy plugin present anyway, money will be automatically disabled.
|
|
use-economy: true
|
|
# Starting money - this is how much money new players will have as their
|
|
# balance at the start of an island.
|
|
starting-money: 10.0
|
|
purge:
|
|
# Only islands below this level will be removed if they are abandoned and admins issue the purge command
|
|
max-island-level: 50
|
|
# Remove user data when its island gets purged.
|
|
# Helps a lot to avoid huge backups and can save some performance on startup,
|
|
# but the player settings and data will be reset.
|
|
remove-user-data: false
|
|
database:
|
|
# FLATFILE, MYSQL, MONGO
|
|
# if you use MONGO, you must also run the BSBMongo plugin (not addon)
|
|
# See https://github.com/tastybento/bsbMongo/releases/
|
|
type: FLATFILE
|
|
host: localhost
|
|
# Port 3306 is MySQL's default. Port 27017 is MongoDB's default.
|
|
port: 3306
|
|
name: BSkyBlock
|
|
username: username
|
|
password: password
|
|
# How often the data will be saved to file in mins. Default is 5 minutes.
|
|
# This helps prevent issues if the server crashes.
|
|
# Data is also saved at important points in the game.
|
|
backup-period: 5
|
|
# Recover super flat - if the generator does not run for some reason, you can get
|
|
# super flat chunks (grass). To remove automatically, select this option. Turn off
|
|
# if there are no more because it may cause lag.
|
|
# This will regenerate any chunks with bedrock at y=0 when they are loaded
|
|
recover-super-flat: false
|
|
# Mute death messages
|
|
mute-death-messages: false
|
|
# Allow FTB Autonomous Activator to work (will allow a pseudo player [CoFH] to place and break blocks and hang items)
|
|
# Add other fake player names here if required
|
|
fakeplayers:
|
|
- '[CoFH]'
|
|
# Allow obsidian to be scooped up with an empty bucket back into lava
|
|
# This only works if there is a single block of obsidian (no obsidian within 10 blocks)
|
|
# Recommendation is to keep this true so that newbies don't bother you or reset their
|
|
# island unnecessarily.
|
|
allow-obsidian-scooping: true
|
|
# Time in seconds that players have to confirm sensitive commands, e.g. island reset
|
|
confirmation-time: 20
|
|
panel:
|
|
close-on-click-outside: true
|
|
island:
|
|
# How long a player must wait until they can rejoin a team island after being
|
|
# kicked in minutes. This slows the effectiveness of players repeating challenges
|
|
# by repetitively being invited to a team island.
|
|
invite-wait: 60
|
|
require-confirmation:
|
|
# Ask the player to confirm the command he is using by typing it again.
|
|
# The 'wait' value is the number of seconds to wait for confirmation.
|
|
kick: true
|
|
kick-wait: 10
|
|
leave: true
|
|
leave-wait: 10
|
|
reset: true
|
|
# How long a player must wait before they can reset their island again in seconds
|
|
reset-wait: 300
|
|
name:
|
|
# These set the minimum and maximum size of a name.
|
|
min-length: 4
|
|
max-length: 20
|
|
customranks: {}
|
|
# These settings should not be edited
|
|
uniqueId: config
|