2022-10-20 17:48:16 +02:00
|
|
|
# Nicko ${project.version} - Config:
|
|
|
|
|
2023-05-20 14:03:01 +02:00
|
|
|
############
|
|
|
|
# LANGUAGE #
|
|
|
|
############
|
|
|
|
|
|
|
|
# Nicko's messages prefix.
|
|
|
|
# Accepted values: any string
|
|
|
|
prefix: "§6Nicko §8§l| §r"
|
|
|
|
|
|
|
|
# Nicko will copy the English locale as "lang.yml"
|
|
|
|
# and will use the translations in that file when "Server Custom"
|
|
|
|
# is selected as the player's locale.
|
|
|
|
# Accepted values: false (Disabled), true (Enabled)
|
|
|
|
customLocale: false
|
|
|
|
|
2023-01-28 16:39:34 +01:00
|
|
|
###########
|
2023-03-07 08:23:50 +01:00
|
|
|
# STORAGE #
|
2023-01-28 16:39:34 +01:00
|
|
|
###########
|
|
|
|
|
2023-03-13 19:32:15 +01:00
|
|
|
# This configuration section manages SQL.
|
|
|
|
sql:
|
2023-05-20 14:03:01 +02:00
|
|
|
# Indicates wherever the data will be stored locally
|
2023-10-05 13:43:50 +02:00
|
|
|
# inside a .json file or in an SQL database.
|
2023-05-20 14:03:01 +02:00
|
|
|
# Accepted values: false (Disabled), true (Enabled)
|
|
|
|
enabled: false
|
2023-10-05 13:43:50 +02:00
|
|
|
# Toggles between the MariaDB and MySQL drivers.
|
|
|
|
# If you use the MySQL database engine, switch this to off.
|
|
|
|
# Accepted values: false (Disabled), true (Enabled)
|
|
|
|
mariadb: true
|
2023-03-13 19:32:15 +01:00
|
|
|
# SQL database's address
|
|
|
|
# Accepted values: valid IP address (e.g. localhost, 127.0.0.1)
|
|
|
|
address: "localhost"
|
|
|
|
# SQL database's port
|
|
|
|
# Accepted values: valid integer (e.g. 3306, 25565)
|
|
|
|
port: 3306
|
|
|
|
# SQL database's username.
|
|
|
|
# Accepted values: any string
|
|
|
|
username: "username"
|
|
|
|
# SQL database's password.
|
|
|
|
# Accepted values: any string
|
|
|
|
password: "password"
|
2022-10-20 17:48:16 +02:00
|
|
|
|
2023-03-07 08:23:50 +01:00
|
|
|
# This configuration section manages Redis (BungeeCord support).
|
|
|
|
# It is used to transfer data between multiple servers.
|
|
|
|
redis:
|
|
|
|
# Indicates wherever the data will be stored through
|
|
|
|
# Redis to transfer whenever a player switches server.
|
|
|
|
# Accepted values: false (Disabled), true (Enabled)
|
|
|
|
enabled: false
|
|
|
|
# Redis server's address
|
|
|
|
# Accepted values: valid IP address (e.g. localhost, 127.0.0.1)
|
|
|
|
address: "localhost"
|
|
|
|
# Redis server's port
|
|
|
|
# Accepted values: valid integer (e.g. 3306, 25565)
|
|
|
|
port: 6379
|
|
|
|
# Redis server's username
|
|
|
|
# Accepted values: any string
|
|
|
|
username: "username"
|
|
|
|
# Redis server's password
|
|
|
|
# Accepted values: any string
|
2023-05-20 14:03:01 +02:00
|
|
|
password: "password"
|