-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yml
125 lines (112 loc) · 5.45 KB
/
config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
general:
# Default: English (en-US) - no download required.
# This defines the default language. You can place multiple locales in the plugin's "Language" folder to display different locales depending on the player's locale.
# You can access translations maintained by the community in our Discord: https://discord.gg/B4MAJVk
# To access translations, other than en-US, execute /translations in the Discord server.
# The translation name should match the official language code (https://www.oracle.com/java/technologies/javase/jdk8-jre8-suported-locales.html).
# This option also affects the grouping and decimal separator for currency formatting.
language: 'en-US'
# Worlds in which furnaces can be placed.
worlds_list:
- world
# Set the format of all economy related displays.
# Info: https://docs.oracle.com/javase/7/docs/api/java/text/DecimalFormat.html
# NOTE: This setting requires server reload / restart.
eco-format:
# Recommended format for item economy and player experience: "# gold ingot(s)" or "# experience"
normal: '$#,##0.00'
# The short format will use the normal format if the value is lower than 1000.
# This format is only used in cases where there is not much space, like on signs.
# This will convert balances like the following:
# 1000000000 = 1B whereas {value} = 1 and {unit} = B
# 1000000 = 1M
# 1000 = 1k
short-unit: '${value}{unit}'
# Date format
# MM: Month
# dd: Day of month
# yyyy: Year
# hh: hours
# mm: minutes
# ss: seconds
# NOTE: These settings require server reload / restart.
date-format:
# Set the time zone for date text outputs.
# Example: America/Los_Angeles or GMT-8:00
# List of time zones: https://timezonedb.com/time-zones
# If empty, it uses the time zone of the machine your server is running on.
time-zone: ''
# General format for invites etc.
# Examples:
# American 12-hour format (a = 12 hour format): MM/dd/yyyy hh:mm a
# German 24-hour format: dd.MM.yyyy hh:mm
general: 'MM/dd/yyyy hh:mm a'
# Format used when only a time displayed.
# Examples:
# American 12-hour format (a = 12 hour format): hh:mm a
# German 24-hour format: hh:mm
time_2: 'hh:mm a'
# General teleportation options.
teleport:
# General teleportation cost. Some features might have specific options, which override this.
costs: 0
# Set the cost of any teleportation to 0 for players that joined the server for the first time.
# You can define a time span here. Example: 1d = players that joined the server 23 hours ago, won't pay for any teleportation.
first-join_time: 2h
# Time to wait before teleportation in seconds.
wait: 3
# Database options
database:
# MySQL database
# If MySQL is disabled, it will use SQLite instead, which runs out of the box without any further steps required.
# To use this without issues, your connection limits etc. need to be configured properly in your MySQL server configuration.
# It is not recommended to connect multiple FasterFurnaces instances to one database with the same table prefix.
mysql:
enabled: false
address: 'localhost'
port: '3306'
username: 'minecraft'
password: 'password'
database: 'fasterfurnaces'
# It's highly recommended to set a unique table prefix if the plugin shares a database with other plugins or FasterFurnaces instances.
table-prefix: 'furnaces_'
vanilla:
# Convert normal furnaces to upgradeable furnaces upon placement?
# Please keep in mind that this won't work, if players already reached their max amount of upgradeable furnaces.
convert: false
# Allow the placement of vanilla furnaces?
place: true
integration:
# Supports Lands (https://www.spigotmc.org/resources/53313), SuperiorSkyblock2, IridiumSkyblock, BentoBox
lands:
# Should players be allowed to place upgradeable furnaces only in claimed regions?
# This disallows placing upgradeable furnaces in wilderness. If a claim is being removed, all furnaces inside it will be removed as well and will drop to the ground
# or be given to the owner of the furnace.
only-land: false
# Remove furnaces of players that get untrusted from a region?
# The furnaces will be removed and the furnace item will drop to the ground or be given to the player, if the furnace is in a loaded chunk.
# If the furnace isn't in a loaded chunk, it will simply drop to the ground, the next time the chunk loads.
untrust-remove: true
# Economy settings
# If all types are disabled, the item based economy will be used instead.
# NOTE: When changing these option you might also want to adjust the "eco-format" in this config.
economy:
vault:
# You need an economy plugin, which supports Vault, to let this work.
enabled_10: true
# Server bank account name. Upkeep will go here. Empty means, that this feature is disabled.
server-bank: ''
# Player experience
exp:
enabled_15: false
# Player levels
# Not recommended, since each player level has their own amount of experience.
# It's recommended to use exp instead.
level:
enabled_16: false
# Item currency is used when all other economy options are disabled or unavailable.
# The currency item can be edited in the GUI language file at the "currency" item.
items:
# If enabled, only items that have the same name, lore etc. will belong to the currency.
# Not just items of the same type or items with the same model-data.
strict: false