Advertisement
Guest User

My config which works very well.

a guest
May 1st, 2015
1,170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. language: english
  2.  
  3. check for new version: true
  4.  
  5. update check interval: 12 hours
  6.  
  7. automatically download new version: false
  8.  
  9. enable effect commands: false
  10.  
  11. effect command token: !
  12.  
  13. allow ops to use effect commands: false
  14.  
  15. date format: default
  16.  
  17. verbosity: normal
  18.  
  19. plugin priority: high
  20.  
  21. log player commands: true
  22.  
  23. number accuracy: 2
  24.  
  25. maximum target block distance: 100
  26.  
  27. case sensitive: false
  28.  
  29. disable variable conflict warnings: false
  30.  
  31. databases:
  32. database 1:
  33.  
  34. type: MySQL
  35.  
  36. pattern: stats.*
  37.  
  38. monitor changes: true
  39. monitor interval: 10 seconds
  40.  
  41. # == MySQL configuration ==
  42. host: localhost # Where the database server is located at, e.g. 'example.com', 'localhost', or '192.168.1.100'
  43. port: 3306 # 3306 is MySQL's default port, i.e. you likely won't need to change this value
  44. user: root
  45. password : pass
  46. database: stats # The database to use. Skript will automatically create a table 'variables21' in this database if it doesn't exist
  47. # (If the table exists but is defined differently that how Skript expects it to be you'll get errors and no variables will be saved and/or loaded)
  48.  
  49. database 2:
  50. # The default "database" is a simple text file, with each variable on a separate line and the variable's name, type, and value separated by commas.
  51. # This is the last database in this list to catch all variables that have not been saved anywhere else.
  52. # You can modify this database freely, but make sure to know what you're doing if you don't want to loose any variables.
  53.  
  54. type: CSV
  55.  
  56. pattern: .*
  57.  
  58. file: ./plugins/Skript/variables.csv
  59.  
  60. backup interval: 2 hours
  61.  
  62.  
  63.  
  64. version: 2.1.2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement