Additions:
- Integrated MySQL alongside SQLite into the plugin. Giving you options between SQLite (.db) or MySQL (database). Switching FROM SQLite to MySQL will safely migrate data. No data loss is expected from this update.
Fixes & Changes:
- Fixed a minor duplication bug with hearts as an item. Further testing will be done.
HOW TO UPLOAD:
1. Load the new updated plugin (v1.0.8-BETA).
2. Go into the config.yml and find
database: then copy that and replace it with:
Code (YAML):
database:
type
:
"sqlite"
# Database type (sqlite or mysql)
# SQLite settings
filename
:
"lifesteal.db"
# SQLite database filename
# MySQL settings (only used when type is mysql)
mysql:
host
:
"localhost"
# MySQL server host
port
: 3306
# MySQL server port
database
:
"lifesteal"
# MySQL database name
username
:
"root"
# MySQL username
password
:
""
# MySQL password
ssl
: false
# Enable SSL connection