Guest User

Untitled

a guest
Jun 29th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.06 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. - '&dBlock Worth: &b{worth:block}'
  105. - '&dChest Worth: &b{worth:chest}'
  106. - '&dSpawner Worth: &b{worth:spawner}'
  107. - '&dPlayer Balances: &b{worth:player_balance}'
  108. - '&dFaction Bank: &b{worth:faction_balance}'
  109. - ''
  110. - '&e&l-- Spawners --'
  111. - '&dPig: &b{count:spawner:pig}'
  112. - '&dZombie: &b{count:spawner:zombie}'
  113. - '&dSpider: &b{count:spawner:spider}'
  114. - '&dSkeleton: &b{count:spawner:skeleton}'
  115. - '&dCow: &b{count:spawner:cow}'
  116. - '&dBlaze: &b{count:spawner:blaze}'
  117. - '&dEnderman: &b{count:spawner:enderman}'
  118. - '&dCreeper: &b{count:spawner:creeper}'
  119. - '&dIron Golem: &b{count:spawner:iron_golem}'
  120. - ''
  121. - '&e&l-- Materials --'
  122. - '&dEmerald Block: &b{count:material:emerald_block}'
  123. - '&dDiamond Block: &b{count:material:diamond_block}'
  124. - '&dGold Block: &b{count:material:gold_block}'
  125. - '&dIron Block: &b{count:material:iron_block}'
  126. - '&dCoal Block: &b{count:material:coal_block}'
  127. - '&dHopper: &b{count:material:hopper}'
  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. - '&dPig: &b{count:spawner:pig}'
  165. - '&dZombie: &b{count:spawner:zombie}'
  166. - '&dSpider: &b{count:spawner:spider}'
  167. - '&dSkeleton: &b{count:spawner:skeleton}'
  168. - '&dCow: &b{count:spawner:cow}'
  169. - '&dBlaze: &b{count:spawner:blaze}'
  170. - '&dEnderman: &b{count:spawner:enderman}'
  171. - '&dCreeper: &b{count:spawner:creeper}'
  172. - '&dIron Golem: &b{count:spawner:iron_golem}'
  173. - ''
  174. - '&e&l-- Materials --'
  175. - '&dEmerald Block: &b{count:material:emerald_block}'
  176. - '&dDiamond Block: &b{count:material:diamond_block}'
  177. - '&dGold Block: &b{count:material:gold_block}'
  178. - '&dIron Block: &b{count:material:iron_block}'
  179. - '&dCoal Block: &b{count:material:coal_block}'
  180. - '&dHopper: &b{count:material:hopper}'
  181. - type: button_next
  182. enabled:
  183. text: '&bNext'
  184. lore: []
  185. material: wool
  186. data: 5
  187. disabled:
  188. text: '&7Next'
  189. lore: []
  190. material: wool
  191. data: 14
  192. settings:
  193. command-aliases:
  194. - f top
  195. ignored-faction-ids:
  196. - none
  197. - safezone
  198. - warzone
  199. - '0'
  200. - '-1'
  201. - '-2'
  202. disable-chest-events: false
  203. factions-per-page: 9
  204. sign-update-ticks: 1
  205. liquid-update-ticks: 100
  206. chunk-queue-size: 200
  207. recalculate-chunks-per-tick: 50
  208. chunk-recalculate-millis: 120000
  209. database:
  210. jdbc-url: jdbc:h2:./plugins/FactionsTop/database
  211. username: root
  212. password: pa$$w0rd
  213. maximum-pool-size: 10
  214. max-lifetime: 5000
  215. idle-timeout: 5000
  216. connection-timeout: 5000
  217. persist-interval: 60000
  218. persist-factions: false
  219. enabled:
  220. chest: true
  221. player_balance: true
  222. faction_balance: true
  223. spawner: true
  224. block: true
  225. perform-recalculate:
  226. command: true
  227. unload: true
  228. claim: true
  229. break: true
  230. place: true
  231. explode: true
  232. chest: true
  233. bypass-recalculate-delay:
  234. command: true
  235. unload: true
  236. claim: true
  237. break: false
  238. place: false
  239. explode: false
  240. chest: false
  241. spawner-prices:
  242. pig: 35000
  243. zombie: 50000
  244. spider: 55000
  245. skeleton: 60000
  246. cow: 80000
  247. blaze: 350000
  248. enderman: 400000
  249. creeper: 500000
  250. iron_golem: 800000
  251. block-prices:
  252. gold_block: 700
  253. iron_block: 350
  254. diamond_block: 1400
  255. emerald_block: 2800
  256. coal_block: 70
  257. hopper: 5000
Add Comment
Please, Sign In to add comment