From cbc66b1c946c8312461de6244b832a695af59353 Mon Sep 17 00:00:00 2001 From: Quentin Legot Date: Mon, 27 Apr 2020 18:18:49 +0200 Subject: [PATCH] Update README.md --- README.md | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b840b1d..53a9628 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,29 @@ # levelSync - levelSync + +levelSync is a spigot plugin which help you to synchronize minecraft vanilla experience between yours servers using MySQL. + +# 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" +```