Guest User

Untitled

a guest
Oct 29th, 2016
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.62 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} &c{worth:total}'
  101. tooltip:
  102. - '&4&l»&fGeneral&4&l«'
  103. - '&cTotal Worth: &4{worth:total}'
  104. - '&cBlock Worth: &4{worth:block}'
  105. - '&cChest Worth: &4{worth:chest}'
  106. - '&cSpawner Worth: &4{worth:spawner}'
  107. - '&cPlayer Balances: &4{worth:player_balance}'
  108. - '&cFaction Bank: &4{worth:faction_balance}'
  109. - ''
  110. - '&4&l»&fSpawners&4&l«'
  111. - '&cCreeper: &4{count:spawner:creeper}'
  112. - '&cEnderman: &4{count:spawner:enderman}'
  113. - '&cBlaze: &4{count:spawner:blaze}'
  114. - '&cIronGolem: &4{count:spawner:irongolem}'
  115. - '&cPigman: &4{count:spawner:zombiepigman}'
  116. - '&cSkeleton: &4{count:spawner:skeleton}'
  117. - '&cZombie: &4{count:spawner:zombie}'
  118. - '&cSpider: &4{count:spawner:spider}'
  119. - '&cCaveSpider: &4{count:spawner:cavespider}'
  120. - '&cCow: &4{count:spawner:cow}'
  121. - '&cMooshroom: &4{count:spawner:mushroomcow}'
  122. - '&cMagmaCube: &4{count:spawner:magmacube}'
  123. - ''
  124. - '&4&l»&fBlocks&4&l«'
  125. - '&cEmerald Block: &4{count:material:emerald_block}'
  126. - '&cDiamond Block: &4{count:material:diamond_block}'
  127. - '&cGold Block: &4{count:material:gold_block}'
  128. - '&cIron Block: &4{count:material:iron_block}'
  129. - '&cCoal Block: &4{count:material:coal_block}'
  130. - '&cHopper: &4{count:material:hopper}'
  131. - '&cBeacon: &4{count:material:beacon}'
  132. footer: ''
  133. permission: '&cYou do not have permission.'
  134. recalculation-start: '&eAll faction totals are being resynchronized'
  135. recalculation-finish: '&eResynchronization of faction totals complete'
  136. recalculation-stop: '&eResynchronization of faction totals stopped'
  137. gui-settings:
  138. command-aliases:
  139. - f topgui
  140. line-count: 1
  141. inventory-name: '&lTop Factions | Page {page:this}'
  142. layout:
  143. - type: button_back
  144. enabled:
  145. text: '&bBack'
  146. lore: []
  147. material: wool
  148. data: 5
  149. disabled:
  150. text: '&7Back'
  151. lore: []
  152. material: wool
  153. data: 14
  154. - type: faction_list
  155. faction-count: 7
  156. fill-empty: true
  157. text: '&e{rank}. {relcolor}{faction} &b{worth:total}'
  158. lore:
  159. - '&4&l≥&fGeneral&4&l≤'
  160. - '&cTotal Worth: &4{worth:total}'
  161. - '&cBlock Worth: &4{worth:block}'
  162. - '&cChest Worth: &4{worth:chest}'
  163. - '&cSpawner Worth: &4{worth:spawner}'
  164. - '&cPlayer Balances: &4{worth:player_balance}'
  165. - '&cFaction Bank: &4{worth:faction_balance}'
  166. - ''
  167. - '&4&l»&fSpawners&4&l«'
  168. - '&cCreeper: &4{count:spawner:creeper}'
  169. - '&cEnderman: &4{count:spawner:enderman}'
  170. - '&cBlaze: &4{count:spawner:blaze}'
  171. - '&cIronGolem: &4{count:spawner:irongolem}'
  172. - '&cPigman: &4{count:spawner:zombiepigman}'
  173. - '&cSkeleton: &4{count:spawner:skeleton}'
  174. - '&cZombie: &4{count:spawner:zombie}'
  175. - '&cSpider: &4{count:spawner:spider}'
  176. - '&cCaveSpider: &4{count:spawner:cavespider}'
  177. - '&cCow: &4{count:spawner:cow}'
  178. - '&cMooshroom: &4{count:spawner:mushroomcow}'
  179. - '&cMagmaCube: &4{count:spawner:magmacube}'
  180. - ''
  181. - '&4&l»&fBlocks&4&l«'
  182. - '&cEmerald Block: &4{count:material:emerald_block}'
  183. - '&cDiamond Block: &4{count:material:diamond_block}'
  184. - '&cGold Block: &4{count:material:gold_block}'
  185. - '&cIron Block: &4{count:material:iron_block}'
  186. - '&cCoal Block: &4{count:material:coal_block}'
  187. - '&cHopper: &4{count:material:hopper}'
  188. - '&cBeacon: &4{count:material:beacon}'
  189. - type: button_next
  190. enabled:
  191. text: '&bNext'
  192. lore: []
  193. material: wool
  194. data: 5
  195. disabled:
  196. text: '&7Next'
  197. lore: []
  198. material: wool
  199. data: 14
  200. settings:
  201. command-aliases:
  202. - f top
  203. ignored-faction-ids:
  204. - none
  205. - safezone
  206. - warzone
  207. - '0'
  208. - '-1'
  209. - '-2'
  210. disable-chest-events: false
  211. factions-per-page: 9
  212. sign-update-ticks: 1
  213. liquid-update-ticks: 100
  214. chunk-queue-size: 200
  215. recalculate-chunks-per-tick: 50
  216. chunk-recalculate-millis: 120000
  217. database:
  218. jdbc-url: jdbc:h2:./plugins/FactionsTop/database
  219. username: root
  220. password: pa$$w0rd
  221. maximum-pool-size: 10
  222. max-lifetime: 5000
  223. idle-timeout: 5000
  224. connection-timeout: 5000
  225. persist-interval: 60000
  226. persist-factions: false
  227. enabled:
  228. chest: true
  229. player_balance: true
  230. faction_balance: true
  231. spawner: true
  232. block: true
  233. perform-recalculate:
  234. command: true
  235. unload: true
  236. claim: true
  237. break: true
  238. place: true
  239. explode: true
  240. chest: true
  241. bypass-recalculate-delay:
  242. command: true
  243. unload: true
  244. claim: true
  245. break: false
  246. place: false
  247. explode: false
  248. chest: false
  249. spawner-prices:
  250. Creeper: 400000.0
  251. Enderman: 400000.0
  252. Blaze: 300000.0
  253. IronGolem: 1250000.0
  254. Pigman: 450000.0
  255. Skeleton: 85000.0
  256. Zombie: 75000.0
  257. Spider: 80000.0
  258. CaveSpider: 70000.0
  259. Cow: 100000.0
  260. Mooshroom: 100000.0
  261. MagmaCube: 500000.0
  262. block-prices:
  263. gold_block: 2000.0
  264. iron_block: 450.0
  265. diamond_block: 3000.0
  266. emerald_block: 3600.0
  267. coal_block: 100.0
  268. hopper: 25000.0
  269. beacon: 500000.0
Add Comment
Please, Sign In to add comment