Changelog/Database
💾 How to Use Database Storage in RegisterPlus
- Open your
config.ymlfile inside the RegisterPlus plugin folder. - Find the database section. Example:
database: type: mysql # Options: mysql, sqlite, postgresql, yaml host: localhost port: 3306 name: registerplus user: root password: "" sqlite-file: database.db - Set
typeto your desired storage:- mysql – For MySQL or MariaDB
- sqlite – For SQLite (file-based, no server required)
- postgresql – For PostgreSQL
- yaml – For classic YAML file storage
- Fill in your database credentials (
host,port,name,user,password). For SQLite, onlysqlite-fileis needed. - Save
config.ymland restart your server. - RegisterPlus will now use your chosen database for all player data. If there are any connection issues, the plugin will automatically fall back to YAML mode and log an error.
Need help? Contact thiago2626 on Discord for support.