MySQL Saving

Using MySQL

MySQL Configuration

If you would rather use MySQL for your saving system; you can enable this through the config.yml file. Simply put in correct details to your MySQL database and ensure that MySQL is enabled and the plugin will start using MySQL for score saving/loading. This can be much more efficient when dealing with a larger amount of players on your server.

# MySQL Database
mysql:
  enabled: false
  db-host: '127.0.0.1'
  db-port: 3306
  db-name: 'chatgames'
  db-user: 'cg-user'
  db-pass: 'changeme123'

Last updated