LevelSync/README.md
2020-04-27 20:06:47 +02:00

32 lines
736 B
Markdown

# levelSync
levelSync is a spigot plugin which help you to synchronize minecraft vanilla experience between yours servers using MySQL.
__IMPORTANT:__ This plugin do no support player in offline mode, please enable online-mode on bungeecord
# Installation
- Put the .jar file in your spigot (not bungeecord) plugin folder
- restart your server to generate config file, then edit it
- restart server, enjoy !
# Configuration
```YAML
mysql:
# mysql server hostname or ip adress
host: "example.com"
# mysql socket
port: 3306
username: "username"
password: "password"
# mysql database, you need to create it first
database: "minecraft"
# table name, automatically created by the plugin
table: "playerLevel"
```