Guest User

Untitled

a guest
Dec 8th, 2018
384
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.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. # - chat: Chat placeholder settings.
  18. # - - enabled: Are FactionsTop placeholders going to be used?
  19. # - - rank-placeholder: The text to replace in the original chat format.
  20. # - - rank-found: How the placeholder should look when a rank is found.
  21. # - - rank-not-found: How the placeholder should look when a rank is NOT found.
  22. # - placeholders: MVdWPlaceholderAPI settings.
  23. # - - faction-not-found: What to replace with when no faction is found.
  24. # - - enabled-ranks: The ranks to be loaded into the MVdWPlaceholderAPI.
  25. # - database: Various database settings, MySQL and H2 are supported.
  26. # - - persist-interval: Millis between database updates.
  27. # - - persist-factions: Saves factions in database for websites to parse.
  28. # - enabled: Toggles whether specific worth types should be recalculated.
  29. # - perform-recalculate: Toggles chunk recalculation for the listed reasons.
  30. # - bypass-recalculate-delay: Toggles which reason bypasses the delay.
  31. # - spawner-prices: Value for specific spawners.
  32. # - block-prices: Value for specific blocks.
  33. #
  34. # Layout types:
  35. # - button_back/button_next: When clicked, moves to relavent page.
  36. # - - enabled/disabled: Button looks, enabled when the page is available.
  37. # - - - text: Item name.
  38. # - - - lore: Item lore.
  39. # - - - material: Item material.
  40. # - - - data: Item data.
  41. # - faction_list: Adds a list of factions to the GUI.
  42. # - - faction-count: Number of factions to add to the GUI.
  43. # - - fill-empty: Leaves the remainder slots blank when true.
  44. # - - text: Item name.
  45. # - - lore: Item lore.
  46. #
  47. # Valid spawners (Case insensitive):
  48. # https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/entity/EntityType.html
  49. #
  50. # Valid materials (Case insensitive):
  51. # https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  52. #
  53. # Valid worth types (Case insensitive):
  54. # - FACTION_BALANCE
  55. # - SPAWNER
  56. #
  57. # Valid recalculation reasons (Case insensitive):
  58. # - COMMAND
  59. # - UNLOAD
  60. # - CLAIM
  61. # - BREAK
  62. # - PLACE
  63. # - EXPLODE
  64. # - CHEST
  65. #
  66. # Placeholders:
  67. # Header/Footer only:
  68. # - {button:back} - Goes to previous page.
  69. # - {button:next} - Goes to next page.
  70. #
  71. # Header, footer and body:
  72. # - {page:back} - Previous page number.
  73. # - {page:this} - Current page number.
  74. # - {page:next} - Next page number.
  75. # - {page:last} - Last page number.
  76. #
  77. # Body only:
  78. # - {rank} - Faction rank.
  79. # - {relcolor} - Relation color of the faction listed to the viewer.
  80. # - {faction} - Faction name.
  81. # - {worth:total} - Total worth of faction listed.
  82. # - {count:total:spawner} - Total spawner count.
  83. # - {worth:<worth type>} - Value of a specific worth type.
  84. # - {count:spawner:<spawner>} - Count of a specific spawner type.
  85. # - {count:material:<material>} - Count of a specific material.
  86. #
  87. # MVdW Placeholders:
  88. # - {factionstop_name:*}
  89. # - - The faction name of a rank by replacing * with a number.
  90. # - - The faction name in last place by replacing * with "last".
  91.  
  92. config-version: 7
  93. messages:
  94. count-format: '#,###'
  95. currency-format: $#,###.##
  96. button-back:
  97. enabled: '&b[<]'
  98. disabled: '&7[<]'
  99. tooltip:
  100. - '&dCommand: &b/f top {page:back}'
  101. button-next:
  102. enabled: '&b[>]'
  103. disabled: '&7[>]'
  104. tooltip:
  105. - '&dCommand: &b/f top {page:next}'
  106. header: '&6_______.[ &2Top Factions {button:back} &6{page:this}/{page:last} {button:next}
  107. &6]._______'
  108. no-entries: '&eNo entries to be displayed.'
  109. body:
  110. text: '&e{rank}. {relcolor}{faction} &b{worth:total}'
  111. tooltip:
  112. - '&e&l-- General --'
  113. - '&dTotal Worth: &b{worth:total}'
  114. - '&dSpawner Worth: &b{worth:spawner}'
  115. - '&dFaction Bank: &b{worth:faction_balance}'
  116. - ''
  117. - '&e&l-- Spawners --'
  118. - '&dVillager: &b{count:spawner:villager}'
  119. - '&dSilverfish: &b{count:spawner:silverfish}'
  120. - '&dZombie: &b{count:spawner:zombie}'
  121. - ''
  122. - '&e&l-- Materials --'
  123. - '&dEmerald Block: &b{count:material:emerald_block}'
  124. - '&dDiamond Block: &b{count:material:diamond_block}'
  125. - '&dGold Block: &b{count:material:gold_block}'
  126. - '&dIron Block: &b{count:material:iron_block}'
  127. - '&dCoal Block: &b{count:material:coal_block}'
  128. footer: ''
  129. permission: '&cYou do not have permission.'
  130. recalculation-start: '&eAll faction totals are being resynchronized'
  131. recalculation-finish: '&eResynchronization of faction totals complete'
  132. recalculation-stop: '&eResynchronization of faction totals stopped'
  133. gui-settings:
  134. command-aliases:
  135. - f topgui
  136. line-count: 1
  137. inventory-name: '&lTop Factions | Page {page:this}'
  138. layout:
  139. - type: button_back
  140. enabled:
  141. text: '&bBack'
  142. lore: []
  143. material: wool
  144. data: 5
  145. disabled:
  146. text: '&7Back'
  147. lore: []
  148. material: wool
  149. data: 14
  150. - type: faction_list
  151. faction-count: 7
  152. fill-empty: true
  153. text: '&e{rank}. {relcolor}{faction} &b{worth:total}'
  154. lore:
  155. - '&e&l-- General --'
  156. - '&dTotal Worth: &b{worth:total}'
  157. - '&dBlock Worth: &b{worth:block}'
  158. - '&dChest Worth: &b{worth:chest}'
  159. - '&dSpawner Worth: &b{worth:spawner}'
  160. - '&dPlayer Balances: &b{worth:player_balance}'
  161. - '&dFaction Bank: &b{worth:faction_balance}'
  162. - ''
  163. - '&e&l-- Spawners --'
  164. - '&dVillager: &b{count:spawner:villager}'
  165. - '&dSilverfish: &b{count:spawner:silverfish}'
  166. - '&dZombie: &b{count:spawner:zombie}'
  167. - ''
  168. - '&e&l-- Materials --'
  169. - '&dEmerald Block: &b{count:material:emerald_block}'
  170. - '&dDiamond Block: &b{count:material:diamond_block}'
  171. - '&dGold Block: &b{count:material:gold_block}'
  172. - '&dIron Block: &b{count:material:iron_block}'
  173. - '&dCoal Block: &b{count:material:coal_block}'
  174. - type: button_next
  175. enabled:
  176. text: '&bNext'
  177. lore: []
  178. material: wool
  179. data: 5
  180. disabled:
  181. text: '&7Next'
  182. lore: []
  183. material: wool
  184. data: 14
  185. settings:
  186. command-aliases:
  187. - f top
  188. ignored-faction-ids:
  189. - none
  190. - safezone
  191. - warzone
  192. - '0'
  193. - '-1'
  194. - '-2'
  195. disable-chest-events: false
  196. factions-per-page: 9
  197. sign-update-ticks: 1
  198. liquid-update-ticks: 100
  199. chunk-queue-size: 200
  200. recalculate-chunks-per-tick: 50
  201. chunk-recalculate-millis: 120000
  202. chat:
  203. enabled: false
  204. rank-placeholder: '{factions_top_rank}'
  205. rank-found: '&2[&e#{rank}&2]'
  206. rank-not-found: ''
  207. placeholders:
  208. faction-not-found: '-'
  209. enabled-ranks:
  210. - 1
  211. - 2
  212. - 3
  213. database:
  214. jdbc-url: jdbc:h2:./plugins/FactionsTop/database
  215. username: root
  216. password: pa$$w0rd
  217. maximum-pool-size: 10
  218. max-lifetime: 5000
  219. idle-timeout: 5000
  220. connection-timeout: 5000
  221. persist-interval: 60000
  222. persist-factions: false
  223. enabled:
  224. chest: true
  225. player_balance: false
  226. faction_balance: true
  227. spawner: true
  228. block: true
  229. perform-recalculate:
  230. command: true
  231. unload: true
  232. claim: true
  233. break: true
  234. place: true
  235. explode: true
  236. chest: true
  237. bypass-recalculate-delay:
  238. command: true
  239. unload: true
  240. claim: true
  241. break: false
  242. place: false
  243. explode: false
  244. chest: false
  245. spawner-prices:
  246. villager: 3000000.0
  247. silverfish: 300000.0
  248. slime: 75000.0
  249. block-prices:
  250. gold_block: 250.0
  251. iron_block: 75.0
  252. diamond_block: 1000.0
  253. emerald_block: 1250.0
  254. coal_block: 25.0
Add Comment
Please, Sign In to add comment