config saving - goflishMC/fabled-temp GitHub Wiki

💾 Config: Saving

The Saving section of config.yml controls how and when player data is stored, including options for auto-saving and SQL integration.

File location:

/plugins/Fabled/config.yml

🔁 Auto-Saving

'auto-save': 'true|false'

Enable or disable automatic data saving.

'minutes': '<number>'

How often data is saved automatically (in minutes).
Only used if auto-save is enabled.


🗄️ SQL Database

'sql-database': 'true|false'

Enable saving and loading player data from an SQL database instead of local files.

'sql-details':

Connection settings for the SQL database:

sql-details:
  host: 'localhost'
  port: '54321'
  database: 'plugins'
  username: 'username'
  password: 'password'
  delay: '0'
  • delay: Number of ticks to wait before loading player data after login.
    Useful for synchronizing with other servers (e.g., BungeeCord).

🔗 Related Pages

⚠️ **GitHub.com Fallback** ⚠️