Advertisement
Guest User

Untitled

a guest
Apr 20th, 2017
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.54 KB | None | 0 0
  1. # default config.yml for MysqlInventoryBridge
  2. # config version 1.7.1
  3.  
  4. #MySQL Database details
  5. database:
  6. mysql:
  7. #MySQL server address
  8. host: ms996.nitrado.net
  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: 'ni583726_1_DB'
  13. #Tables name (the plugin will auto create it)
  14. tableName: 'meb_inventory'
  15. #User name
  16. user: 'ni583726_1_DB'
  17. #User password
  18. password: 'rzDJ10hx'
  19. #Remove inactive users from the database. This maintenance task will start each server start with a 2min delay.
  20. maintenance:
  21. #Enable or disable database maintenance. | (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: 1
  36. #Hide the data save task log messages.
  37. hideLogMessages: false
  38. #Login economy sync delay in milliseconds (default 1000 milliseconds = 1 second)
  39. #This delay is needed in bungeecord setups, because when you move between servers the quit and login takes place almost in the same time.
  40. loginSyncDelay: 10
  41. #Set this to false to disable the sync of players armor. | (true or false)
  42. syncArmorEnabled: true
  43. #Enable modded items support. This will require the ProtocolLib dependency! | (true or false)
  44. #This is needed if you experience item data loss on some mods that save NBT data.
  45. #WARNING! All the servers that are in sync must have this option set the same, or you will lose items.
  46. enableModdedItemsSupport: false
  47. #Disable sounds generated by this plugin. The sync confirmation sound for example. | (true or false)
  48. disableSounds: false
  49.  
  50.  
  51. #Chat Messages with full color and format codes support. Disable any message by setting it to '' | Example> syncComplete: ''
  52. #Minecraft Color and Format Codes: http://minecraft.gamepedia.com/Formatting_codes
  53. ChatMessages:
  54. syncComplete: '&2[inventory Synr] &aInventar gespeichert....!'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement