Advertisement
Guest User

Untitled

a guest
Apr 10th, 2016
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. databases:
  2. # Databases to store variables in. These can either be used as a simple one-server-storage
  3. # where variables are written constantly but only read at server start,
  4. # or as a connection between multiple servers by monitoring the database(s) for changes.
  5. #
  6. # You can define as many databases as you want, just make sure to choose a distinct name for each one, and don't forget to set all options correctly.
  7. #
  8. # To be able to use a database you'll need to download the plugin 'SQLibrary' from http://dev.bukkit.org/server-mods/sqlibrary/files/
  9. # and install it in your server's plugin directory like other plugins.
  10. #
  11. # Please note that '/skript reload' will not reload this section, i.e. you'll have to restart Skript for changes to take effect.
  12.  
  13. # Each database definition must be in a separate section. You can choose any name for the sections, as long as it's not already used.
  14. database:
  15. type: MySQL
  16. pattern: db.*
  17. host: localhost
  18. port: 3306
  19. user: root
  20. password: ******
  21. database: skript
  22. monitor changes: true
  23. monitor interval: 20 seconds
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement