Guest User

Untitled

a guest
Mar 2nd, 2016
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.57 KB | None | 0 0
  1. # default config.yml for MysqlEcoBridge
  2. # config version 2.0
  3.  
  4. #MySQL Database details
  5. database:
  6.     mysql:
  7.        #MySQL server address
  8.         host: 'I am not telling you'
  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: 'mc'
  13.         #Tables name (the plugin will auto create it)
  14.         dataTableName: 'eco_accounts'
  15.         #User name
  16.         user: 'mc'
  17.         #User password
  18.         password: 'I am not telling you'
  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.    #Login economy sync delay in milliseconds (default 1000 milliseconds = 1 second)
  30.     #This delay is needed in bungeecord setups, because when you move between servers the quit and login takes place almost in the same time.
  31.     loginSyncDelay: 1000
  32.     #Save online players accounts to database task. Disable this task and data will only be saved when the player disconnects.
  33.     #To limit data loss in case the server crashes enable this saving task. It runs async so there will be no lag involved.
  34.     dataSaveTask:
  35.        #Enable or disable the saving task.  (true or false)
  36.         enabled: true
  37.         #The time between saving data in minutes.  Default 3 minutes.
  38.         interval: 3
Add Comment
Please, Sign In to add comment