💾Database
It is time to define and configure the database, but first some warnings and tips for better performance and to avoid errors.
If you are using the BUNGEE (BedWarsProxy) it is necessary to use MySQL or MariaDB to synchronize player data.
The .sql file when using SQLite is stored in BedWars1058 / BedWars Proxy/Cache/challenges.db
Database Provider
The database provider is the one who provides the credentials to connect to the database, let's see how we can change the provider.
Open the add-on config.yml located in the Bed Wars plugin addons folder.
Search for the
storage
category and then search for thedata-provider
Choose your data provider, either Challenges or BedWars
If you choose Challenges, you can change all the values inside the storage category.
# Storage / Database of add-on category.
# Please be careful changing options of this category.
# If you don't know what you are doing, please don't change anything.
storage:
# The data provider determine if the database credentials
# are handle by BedWars1058 / BedWarsProxy or by
# BedWars1058 Challenges add-on.
# Valid options are Challenges or BedWars.
# - If "Challenges" is selected, you can modify the
# values below.
data-provider: "BedWars" # Challenges or BedWars
Last updated
Was this helpful?