Advertisement
Guest User

Untitled

a guest
Jul 21st, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.11 KB | None | 0 0
  1. #######################
  2. #
  3. # Settings
  4. #
  5. ####################################
  6. Databases:
  7. murder:
  8. hostname: "localhost"
  9. port: 3306
  10. database: "minigry_murder"
  11. user: "mateulusz"
  12. password: "PQ76MAPSWN"
  13. max-pool-size: 3
  14. Boards:
  15. # The identifier for the board, you'll use it with PAPI's placeholders
  16. murderwin:
  17. # The database where the query will be executed on
  18. database: murder
  19. queries:
  20. # The query that will return the list of stats, in this example it returns ID, Name and Kills in desc order
  21. result-set: "SELECT playername, wins FROM MurderData ORDER BY wins DESC LIMIT 10"
  22. # Here you have to tell the plugin which are column representing player's uuid, name and score.
  23. dictionary:
  24. # You have to specify at least one UUID or NAME, else the plugin won't be able to know what's the score owner.
  25. player-uuid: ""
  26. player-name: "playername"
  27. player-score: "wins"
  28. # You have to specify what kind of data score is. DOUBLE = decimals, INTEGER = without decimals.
  29. score-type: "INTEGER"
  30. placeholder-replacer: "&b%name% &7(%score%)"
  31. murderscore:
  32. # The database where the query will be executed on
  33. database: murder
  34. queries:
  35. # The query that will return the list of stats, in this example it returns ID, Name and Kills in desc order
  36. result-set: "SELECT playername, score FROM MurderData ORDER BY score DESC LIMIT 10"
  37. # Here you have to tell the plugin which are column representing player's uuid, name and score.
  38. dictionary:
  39. # You have to specify at least one UUID or NAME, else the plugin won't be able to know what's the score owner.
  40. player-uuid: ""
  41. player-name: "playername"
  42. player-score: "score"
  43. # You have to specify what kind of data score is. DOUBLE = decimals, INTEGER = without decimals.
  44. score-type: "INTEGER"
  45. placeholder-replacer: "&b%name% &7(%score%)"
  46. #TimeUnit = SECONDS
  47. update-rate: 30
  48. #######################
  49. #
  50. # Messages
  51. #
  52. ####################################
  53. Messages:
  54. prefix: "LJayBoards >> "
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement