Advertisement
iAim

Untitled

Mar 31st, 2020
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. #-----------------------------------------#
  2. # #
  3. # LeaderHeads 4 #
  4. # A full-fledged solution to manage #
  5. # statistics and create leaderboards #
  6. # (R) Panoply Tech 2019 #
  7. # #
  8. #-----------------------------------------#
  9. # #
  10. # Database config #
  11. # The database is used for storing data #
  12. # of statististics and players #
  13. # #
  14. #-----------------------------------------#
  15.  
  16. # Server prefix
  17. # If you want to save data in a different database table for each server, edit this.
  18. # This will be used as a prefix. It is best to use an alphanumeric value for this to avoid issues.
  19. server-prefix: default
  20.  
  21. # SQLite details
  22. # SQLite will be used by default
  23. sqlite:
  24. path: data/LeaderHeadsDatabase.db
  25.  
  26. # MySQL details
  27. # If MySQL is not enabled, SQLite will be used
  28. mysql:
  29. enabled: false
  30. host: localhost
  31. port: 3306
  32. database: database
  33. username: username
  34. password: password
  35. connections: 10
  36. timeout: 120000
  37. ssl: false
  38.  
  39. toplevel:
  40. location: BedWarsLobby, -34, 79, 22
  41. lines:
  42. - '&bBed Wars Level'
  43. - '{fast}&b%leaderheads_name_statisticwalkonecm_daily_1% &f- &b%leaderheads_value_statisticwalkonecm_daily_1% cm'
  44. - '{fast}&b%leaderheads_name_statisticwalkonecm_daily_2% &f- &b%leaderheads_value_statisticwalkonecm_daily_2% cm'
  45. - '{fast}&b%leaderheads_name_statisticwalkonecm_daily_3% &f- &b%leaderheads_value_statisticwalkonecm_daily_3% cm'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement