Guest User

Untitled

a guest
Oct 25th, 2016
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.10 KB | None | 0 0
  1. # FactionsTop by Novucs.
  2. #
  3. # Configuration walkthrough:
  4. # - config-version: Should not be touched, determines config version.
  5. # - command-aliases: List of command to rebind to "/ftop".
  6. # - gui-settings: All settings related to GUIs.
  7. # - - line-count: Number of inventory lines.
  8. # - - inventory-name: Name used in inventory header.
  9. # - - layout: Fully configurable GUI layout.
  10. # - ignored-faction-ids: Faction IDs to not calculate for factions top.
  11. # - disable-chest-events: Disables chest events, improves performance.
  12. # - factions-per-page: Number of factions displayed per page in "/ftop".
  13. # - sign-update-ticks: Duration in ticks between sign updates.
  14. # - liquid-update-ticks: Duration in ticks between liquid economy updates.
  15. # - chunk-queue-size: Hard-limit maximum chunks to be queued for recalculation.
  16. # - chunk-recalculate-millis: Duration in millis between chunk recalculations.
  17. # - database: Various database settings, MySQL and H2 are supported.
  18. # - - persist-interval: Millis between database updates.
  19. # - - persist-factions: Saves factions in database for websites to parse.
  20. # - enabled: Toggles whether specific worth types should be recalculated.
  21. # - perform-recalculate: Toggles chunk recalculation for the listed reasons.
  22. # - bypass-recalculate-delay: Toggles which reason bypasses the delay.
  23. # - spawner-prices: Value for specific spawners.
  24. # - block-prices: Value for specific blocks.
  25. #
  26. # Layout types:
  27. # - button_back/button_next: When clicked, moves to relavent page.
  28. # - - enabled/disabled: Button looks, enabled when the page is available.
  29. # - - - text: Item name.
  30. # - - - lore: Item lore.
  31. # - - - material: Item material.
  32. # - - - data: Item data.
  33. # - faction_list: Adds a list of factions to the GUI.
  34. # - - faction-count: Number of factions to add to the GUI.
  35. # - - fill-empty: Leaves the remainder slots blank when true.
  36. # - - text: Item name.
  37. # - - lore: Item lore.
  38. #
  39. # Valid spawners (Case insensitive):
  40. # https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/entity/EntityType.html
  41. #
  42. # Valid materials (Case insensitive):
  43. # https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  44. #
  45. # Valid worth types (Case insensitive):
  46. # - CHEST
  47. # - PLAYER_BALANCE
  48. # - FACTION_BALANCE
  49. # - SPAWNER
  50. # - BLOCK
  51. #
  52. # Valid recalculation reasons (Case insensitive):
  53. # - COMMAND
  54. # - UNLOAD
  55. # - CLAIM
  56. # - BREAK
  57. # - PLACE
  58. # - EXPLODE
  59. # - CHEST
  60. #
  61. # Placeholders:
  62. # Header/Footer only:
  63. # - {button:back} - Goes to previous page.
  64. # - {button:next} - Goes to next page.
  65. #
  66. # Header, footer and body:
  67. # - {page:back} - Previous page number.
  68. # - {page:this} - Current page number.
  69. # - {page:next} - Next page number.
  70. # - {page:last} - Last page number.
  71. #
  72. # Body only:
  73. # - {rank} - Faction rank.
  74. # - {relcolor} - Relation color of the faction listed to the viewer.
  75. # - {faction} - Faction name.
  76. # - {worth:total} - Total worth of faction listed.
  77. # - {count:total:spawner} - Total spawner count.
  78. # - {worth:<worth type>} - Value of a specific worth type.
  79. # - {count:spawner:<spawner>} - Count of a specific spawner type.
  80. # - {count:material:<material>} - Count of a specific material.
  81.  
  82. config-version: 5
  83. messages:
  84. count-format: '#,###'
  85. currency-format: $#,###.##
  86. button-back:
  87. enabled: '&b[<]'
  88. disabled: '&7[<]'
  89. tooltip:
  90. - '&dCommand: &b/f top {page:back}'
  91. button-next:
  92. enabled: '&b[>]'
  93. disabled: '&7[>]'
  94. tooltip:
  95. - '&dCommand: &b/f top {page:next}'
  96. header: '&6_______.[ &2Top Factions {button:back} &6{page:this}/{page:last} {button:next}
  97. &6]._______'
  98. no-entries: '&eNo entries to be displayed.'
  99. body:
  100. text: '&e{rank}. {relcolor}{faction} &b{worth:total}'
  101. tooltip:
  102. - '&e&l-- General --'
  103. - '&dTotal Worth: &b{worth:total}'
  104. - '&dPlayer Balances: &b{worth:player_balance}'
  105. - '&dFaction Bank: &b{worth:faction_balance}'
  106. footer: ''
  107. permission: '&cYou do not have permission.'
  108. recalculation-start: '&eAll faction totals are being resynchronized'
  109. recalculation-finish: '&eResynchronization of faction totals complete'
  110. recalculation-stop: '&eResynchronization of faction totals stopped'
  111. gui-settings:
  112. command-aliases: []
  113. line-count: 1
  114. inventory-name: '&lTop Factions | Page {page:this}'
  115. layout:
  116. - type: button_back
  117. enabled:
  118. text: '&bBack'
  119. lore: []
  120. material: wool
  121. data: 5
  122. disabled:
  123. text: '&7Back'
  124. lore: []
  125. material: wool
  126. data: 14
  127. - type: faction_list
  128. faction-count: 7
  129. fill-empty: true
  130. text: '&e{rank}. {relcolor}{faction} &b{worth:total}'
  131. lore:
  132. - '&e&l-- General --'
  133. - '&dTotal Worth: &b{worth:total}'
  134. - '&dPlayer Balances: &b{worth:player_balance}'
  135. - '&dFaction Bank: &b{worth:faction_balance}'
  136. - type: button_next
  137. enabled:
  138. text: '&bNext'
  139. lore: []
  140. material: wool
  141. data: 5
  142. disabled:
  143. text: '&7Next'
  144. lore: []
  145. material: wool
  146. data: 14
  147. settings:
  148. command-aliases:
  149. - f top
  150. ignored-faction-ids:
  151. - none
  152. - safezone
  153. - warzone
  154. - '0'
  155. - '-1'
  156. - '-2'
  157. disable-chest-events: false
  158. factions-per-page: 9
  159. sign-update-ticks: 1
  160. liquid-update-ticks: 100
  161. chunk-queue-size: 200
  162. recalculate-chunks-per-tick: 50
  163. chunk-recalculate-millis: 120000
  164. database:
  165. jdbc-url: jdbc:h2:./plugins/FactionsTop/database
  166. username: root
  167. password: pa$$w0rd
  168. maximum-pool-size: 10
  169. max-lifetime: 5000
  170. idle-timeout: 5000
  171. connection-timeout: 5000
  172. persist-interval: 60000
  173. persist-factions: false
  174. enabled:
  175. chest: false
  176. player_balance: true
  177. faction_balance: true
  178. spawner: false
  179. block: false
  180. perform-recalculate:
  181. command: true
  182. unload: true
  183. claim: true
  184. break: false
  185. place: false
  186. explode: false
  187. chest: false
  188. bypass-recalculate-delay:
  189. command: true
  190. unload: true
  191. claim: true
  192. break: false
  193. place: false
  194. explode: false
  195. chest: false
  196. spawner-prices:
  197. skeleton: 0
  198. zombie: 0
  199. slime: 0
  200. block-prices:
  201. gold_block: 0
  202. iron_block: 0
  203. diamond_block: 0
  204. emerald_block: 0
  205. coal_block: 0
Add Comment
Please, Sign In to add comment