Advertisement
Guest User

Untitled

a guest
May 19th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. # default config.yml for MysqlEcoBridge
  2. # config version 3.1.2
  3.  
  4. #MySQL Database details
  5. database:
  6. mysql:
  7. #MySQL server address
  8. host: 167.114.102.150
  9. #MySQL server port (default 3306)
  10. port: 3306
  11. #Database name (NOTE! You need to create the database, then the plugin will create the tables.)
  12. databaseName: 'mc31372'
  13. #Tables name (the plugin will auto create it)
  14. dataTableName: 'eco_accounts'
  15. #User name
  16. user: 'mc31372'
  17. #User password
  18. password: '271051af4a'
  19. #This maintenance task runs async with a 2 min delay after the server starts.
  20. removeOldAccounts:
  21. #Enable or disable database clean up of old accounts. | (true or false)
  22. enabled: false
  23. #Inactivity in days. Default 60 days.
  24. inactivity: 60
  25.  
  26.  
  27. #Other configurable options
  28. General:
  29. #Save online players accounts to database task. Disable this task and data will only be saved when the player disconnects.
  30. #To limit data loss in case the server crashes enable this saving task. It runs async so there will be no lag involved.
  31. saveDataTask:
  32. #Enable or disable the data save task. | (true or false)
  33. enabled: true
  34. #Time between data saves in minutes. | Default 3 min.
  35. interval: 3
  36. #Hide the data save task log messages.
  37. hideLogMessages: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement