About This Minecraft (Spigot) plugin is able to save login and logout timestamps along with the player name and more information into a database.
This information can be used further for statistics.
Usage Run the plugin once, then change the config.yml to your needs.
You can configure your own SQL database there. Per default, an SQLite DB will be created.
For more info see the Configuration section.
Configuration All configuration is done in the config.yml.
The default config.yml:
```
dbProvider: auto dbUrl: username: password: ```
- `dbProvider` can either be set to `auto` or `other`.
- When `auto` is given, the plugin handles the database connection automatically.
- An SQLite database will then be created in your `plugins/logtime` folder when using auto mode.
- The parameters `dbUrl`, `username` and `password` will be ignored when using auto mode.
- When `other` is given, the `dbUrl` parameter must be set accordingly and `username` and `password` fields can be used.
- `dbUrl` is the JDBC connection string to be used.
- Sample: `jdbc:mysql://HOST/DATABASE`
- Don't forget to provide a username and password for databases with login method
Disclaimer This plugin is provided "as-is" and there is no support provided for it.