- Added a way to hook LobbyGames into MySQL! The plugin will create and manage a table named "lobbygames_stats" to keep track of the same information that was previously kept in player_stats.yml.
If MySQL is enabled, the plugin will not use the player_stats.yml file at all. If MySQL is disabled (default), the plugin will save player stats in the same way that it did before.
- Reading and writing operations regarding player statistics will now be done asynchronously whenever possible. The data is cached in the same way.
This update adds the following lines to the config.yml:
Code (Text):
mysql:
enabled: false
username: "username"
password: "password"
host: "localhost:3306"
name: "database"
The MySQL user will need permissions to Create, Select, Insert, and Update on the "lobbygames_stats" table.