Changelog/Database

💾 How to Use Database Storage in RegisterPlus

  1. Open your config.yml file inside the RegisterPlus plugin folder.
  2. 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
        
  3. Set type to 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
  4. Fill in your database credentials (host, port, name, user, password). For SQLite, only sqlite-file is needed.
  5. Save config.yml and restart your server.
  6. 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.