Advertisement
Dojnaz

HLB LConf

Feb 6th, 2018
414
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.17 KB | None | 0 0
  1. # SQL LEADERBOARDS
  2. # enabled: false //Enables the leaderboard.
  3. # database: "" //The name of the database that contains the SQL data.
  4. # separateNameTable:
  5. # enabled: false //Enable separateNameTable if the player names are stored in a different table than the stat you wish to display.
  6. # nameTable: stats_players //The name of the Table that contains the Player Names.
  7. # sepNameCol: name //The name of the Column within the Table that contains the Player Names OR UUID's. If you use UUID, also enable usingUUID.
  8. # sepIdCol: player_id //The name of the Column within the Table that contains the Player Ids.
  9. # sortByWorld:
  10. # enabled: false //Enable sortByWorld if you want to sort the stats base by the world the player was in.
  11. # worldCol: world //The name of the Column in the Table that contains the World Names.
  12. # worldName: world //The name of the World that you want to sort the data by.
  13. # customColumn:
  14. # enabled: false //Enable customColumn if you want to sort the stats by another variable that is contained in a separate column (Example: snapshots in Stats).
  15. # customCol: customCol //The name of the Column in the Table that contains the custom data.
  16. # rowValues: rowValues //The values of custom data that you want included in the sort (more than one value can be used by separating values with commas).
  17. # customColumn2:
  18. # enabled: false //Enable customColumn2 if you want to sort the stats by a second variable that is contained in a separate column (Example: type of Mob).
  19. # customCol: customCol //The name of the Column in the Table that contains the custom data.
  20. # rowValues: rowValues //The values of custom data that you want included in the sort (more than one value can be used by separating values with commas).
  21. # statTable: testStats //The name of the Table that contains the Stat data.
  22. # statName: testStats //The name of the column that contains the Stat Data.
  23. # statDisplay: Test //How you want the Stat to be Displayed on the Sign (Example: Kills).
  24. # usingUUID: false //Set to true if you database uses UUID's. Name column should then be set as your UUID Column.
  25. # nameColumn: player //The name of the column that contains the player names or UUID. If you use UUID, also enable usingUUID.However if you are using separateNameTable, this becomes the name of the column in the Stats Table that contains the Player Ids.
  26. # hlbSize: 5 //The Desired length of the leaderboard.
  27. # reverseOrder: false //Enable this setting to do reversed leaderboards.
  28. # statOnSameLine: false //Enable this setting to have stat displayed on same line as statDisplay
  29. # line0Format: black, bold, header //LINEFORMATTING: Set the color, then the Format, then the "Item to Display"
  30. # line1Format: dark blue, normal, name //The Color Can be: black, dark blue, dark green, dark aqua, dark red, dark purple, gold, gray, dark gray, blue, green, aqua, red, light purple, yellow or white.
  31. # line2Format: dark red, bold, statDisplay //The Format Can be: normal, bold, itallic, underline or magic.
  32. # line3Format: dark purple, bold, stat //The "Item to Display" can be: name, stat, stat2, statdisplay, header, blank or custom. If you use custom add a comma and then put your custom text.
  33. # flatFileDB:
  34. # enabled: false //Enable flatFileDB if you want to you a SQLite flatfile db file.
  35. # flatFilePath: \plugins\ //Path to the db file from the server root directory.
  36. # multiStat:
  37. # enabled: false //Enable to have two stats on one sign. To get the second stat to display you must also change one of the line formats above to include "Stat2"
  38. # customColumn:
  39. # enabled: false //Enable customColumn if you want to sort the stats by another variable that is contained in a separate column (Example: snapshots in Stats).
  40. # customCol: customCol //The name of the Column in the Table that contains the custom data.
  41. # rowValues: rowValues //The values of custom data that you want included in the sort (more than one value can be used by separating values with commas).
  42. # customColumn2:
  43. # enabled: false //Enable customColumn2 if you want to sort the stats by a second variable that is contained in a separate column (Example: type of Mob or cause of death).
  44. # customCol: customCol //The name of the Column in the Table that contains the custom data.
  45. # rowValues: rowValues //The values of custom data that you want included in the sort (more than one value can be used by separating values with commas).
  46. # statTable: stattable //The name of the table which contains the stat (it can be a different table or the same table as the first stat, but you must fill it in).
  47. # statName: statname //The name of the column that contains the Stat Data for the second stat.
  48. # statDisplay: statDisplay //How you want the second Stat to be Displayed on the Sign (Example: Deaths).
  49. # nameColumn: nameColumn //The name of the column that contains the player names. However if you are using separateNameTable, this becomes the name of the column in the Stats Table that contains the Player Ids.
  50.  
  51.  
  52. enabled: true
  53. database: skywars
  54. separateNameTable:
  55. enabled: false
  56. nameTable: stats_players
  57. sepNameCol: name
  58. sepIdCol: player_id
  59. sortByWorld:
  60. enabled: false
  61. worldCol: world
  62. worldName: world
  63. customColumn:
  64. enabled: false
  65. customCol: customCol
  66. rowValues: rowValues
  67. customColumn2:
  68. enabled: false
  69. customCol: customCol
  70. rowValues: rowValues
  71. statTable: skywars_data
  72. statName: kills
  73. statDisplay: Kills
  74. usingUUID: false
  75. nameColumn: username
  76. hlbSize: 15
  77. reverseOrder: false
  78. statOnSameLine: false
  79. line0Format: black, bold, header
  80. line1Format: dark blue, normal, name
  81. line2Format: dark red, bold, statdisplay
  82. line3Format: dark purple, bold, stat
  83. flatFileDB:
  84. enabled: false
  85. flatFilePath: \plugins\
  86. multiStat:
  87. enabled: false
  88. customColumn:
  89. enabled: false
  90. customCol: customCol
  91. rowValues: rowValues
  92. customColumn2:
  93. enabled: false
  94. customCol: customCol
  95. rowValues: rowValues
  96. statTable: stattable
  97. statName: statname
  98. statDisplay: statDisplay
  99. nameColumn: nameColumn
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement