Update from Git Manager GUI

This commit is contained in:
2026-01-28 08:00:53 +01:00
parent d57bef3525
commit d06ddf1bf8
16 changed files with 559 additions and 946 deletions

View File

@@ -1,39 +1,59 @@
# default config.yml for MysqlEcoBridge
# config version 3.4.1
# +-----------------------------------------------------------------------+
# | MySQL Eco Bridge 3 |
# | Version: 3.6 | by M-Viper |
# +-----------------------------------------------------------------------+
#MySQL Database details
# -------------------------------------------------------------------------
# DATENBANK-EINSTELLUNGEN
# -------------------------------------------------------------------------
# Hier konfigurierst du die Verbindung zu deinem MySQL/MariaDB Server.
# HINWEIS: Die Datenbank muss bereits existieren, Tabellen werden erstellt.
database:
mysql:
#MySQL server address
host: 127.0.0.1
#MySQL server port (default 3306)
port: 3306
#Database name (NOTE! You need to create the database, then the plugin will create the tables.)
databaseName: 'mydatabase'
#Tables name (the plugin will auto create it)
dataTableName: 'eco_accounts'
#User name
user: 'admin'
#User password
password: 'cheesecake'
#SSL connection.
sslEnabled: false
#This maintenance task runs async with a 2 min delay after the server starts.
removeOldAccounts:
#Enable or disable database clean up of old accounts. | (true or false)
enabled: false
#Inactivity in days. Default 60 days.
inactivity: 60
#Other configurable options
mysql:
host: 127.0.0.1
port: 3306
databaseName: 'mydatabase'
dataTableName: 'eco_accounts'
user: 'admin'
password: 'password123'
# SSL verschlüsselt die Verbindung zwischen Server und Datenbank.
sslEnabled: false
# -----------------------------------------------------------------------
# DATENBANK-WARTUNG (CLEANUP)
# -----------------------------------------------------------------------
# Diese Aufgabe läuft automatisch im Hintergrund (2 Min. nach Start).
# Sie hilft dabei, die Datenbank schlank zu halten.
removeOldAccounts:
# Sollen inaktive Accounts automatisch gelöscht werden?
enabled: false
# Ab wie vielen Tagen Inaktivität gilt ein Account als veraltet?
inactivity: 60
# -------------------------------------------------------------------------
# ALLGEMEINE PLUGIN-OPTIONEN
# -------------------------------------------------------------------------
General:
#Save online players accounts to database task. Disable this task and data will only be saved when the player disconnects.
#To limit data loss in case the server crashes enable this saving task. It runs async so there will be no lag involved.
saveDataTask:
#Enable or disable the data save task. | (true or false)
enabled: true
#Time between data saves in minutes. | Default 3 min.
interval: 3
#Hide the data save task log messages.
hideLogMessages: false
# BACKUP-SYSTEM (AUTOSAVE)
# Verhindert Datenverlust bei Serverabstürzen. Wenn deaktiviert, wird
# das Geld NUR beim Verlassen des Servers (Disconnect) gespeichert.
saveDataTask:
# Automatisches Speichern im Hintergrund aktivieren?
enabled: true
# Intervall in Minuten (Standard: 3).
interval: 3
# Wenn true, werden die "Saving online players..." Nachrichten in der
# Konsole unterdrückt, um den Log sauber zu halten.
hideLogMessages: false
# -------------------------------------------------------------------------
# NACHRICHTEN & FEEDBACK (Optional/Erweiterbar)
# -------------------------------------------------------------------------
ChatMessages:
# Nachricht, die gesendet wird, wenn die Synchronisation abgeschlossen ist.
# Nutze "" um die Nachricht zu deaktivieren. Farbcodes mit & möglich.
syncComplete: "&a[Eco] &7Deine Kontodaten wurden erfolgreich synchronisiert!"
# +-----------------------------------------------------------------------+
# | HINWEIS: Änderungen werden erst nach einem Server-Neustart aktiv. |
# +-----------------------------------------------------------------------+

View File

@@ -1,7 +1,9 @@
name: MysqlEcoBridge
main: net.craftersland.eco.bridge.Eco
version: 3.5
main: net.mviper.eco.bridge.Eco
version: 3.6
api-version: 1.15
depend: [Vault]
author: M_Viper
website: www.m-viper.de
load: STARTUP
description: Sync your economy accounts over many servers using MySQL.
description: Synchronisiert Vault-Economy-Accounts über mehrere Server hinweg via MySQL.