Guest User

Untitled

a guest
May 20th, 2017
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.90 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. # - CHEST
  55. # - SPAWNER
  56. # - BLOCK
  57. #
  58. # Valid recalculation reasons (Case insensitive):
  59. # - COMMAND
  60. # - UNLOAD
  61. # - CLAIM
  62. # - BREAK
  63. # - PLACE
  64. # - EXPLODE
  65. # - CHEST
  66. #
  67. # Placeholders:
  68. # Header/Footer only:
  69. # - {button:back} - Goes to previous page.
  70. # - {button:next} - Goes to next page.
  71. #
  72. # Header, footer and body:
  73. # - {page:back} - Previous page number.
  74. # - {page:this} - Current page number.
  75. # - {page:next} - Next page number.
  76. # - {page:last} - Last page number.
  77. #
  78. # Body only:
  79. # - {rank} - Faction rank.
  80. # - {relcolor} - Relation color of the faction listed to the viewer.
  81. # - {faction} - Faction name.
  82. # - {worth:total} - Total worth of faction listed.
  83. # - {count:total:spawner} - Total spawner count.
  84. # - {worth:<worth type>} - Value of a specific worth type.
  85. # - {count:spawner:<spawner>} - Count of a specific spawner type.
  86. # - {count:material:<material>} - Count of a specific material.
  87. #
  88. # MVdW Placeholders:
  89. # - {factionstop_name:*}
  90. # - - The faction name of a rank by replacing * with a number.
  91. # - - The faction name in last place by replacing * with "last".
  92.  
  93. config-version: 7
  94. messages:
  95. count-format: '#,###'
  96. currency-format: $#,###.##
  97. button-back:
  98. enabled: '&b[<]'
  99. disabled: '&7[<]'
  100. tooltip:
  101. - '&dCommand: &b/f top {page:back}'
  102. button-next:
  103. enabled: '&b[>]'
  104. disabled: '&7[>]'
  105. tooltip:
  106. - '&dCommand: &b/f top {page:next}'
  107. header: '&6_______.[ &2Top Factions {button:back} &6{page:this}/{page:last} {button:next}
  108. &6]._______'
  109. no-entries: '&eNo entries to be displayed.'
  110. body:
  111. text: '&e{rank}. {relcolor}{faction} &b{worth:total}'
  112. tooltip:
  113. - '&e&l-- General --'
  114. - '&dTotal Worth: &b{worth:total}'
  115. - '&dBlock Worth: &b{worth:block}'
  116. - '&dChest Worth: &b{worth:chest}'
  117. - '&dSpawner Worth: &b{worth:spawner}'
  118. - ''
  119. - '&e&l-- Spawners --'
  120. - '&dSkeleton: &b{count:spawner:skeleton}'
  121. - '&dZombie: &b{count:spawner:zombie}'
  122. - '&dCow: &b{count:spawner:cow}'
  123. - '&dSheep: &b{count:spawner:sheep}'
  124. - '&dBlaze: &b{count:spawner:blaze}'
  125. - '&dPig: &b{count:spawner:pig}'
  126. - '&dChicken: &b{count:spawner:chicken}'
  127. - '&dCaveSpider: &b{count:spawner:cavespider}'
  128. - '&dHorse: &b{count:spawner:horse}'
  129. - '&dPigzombie: &b{count:spawner:pigzombie}'
  130. - '&dEnderman: &b{count:spawner:enderman}'
  131. - '&dCreeper: &b{count:spawner:creeper}'
  132. - '&dIronGolem: &b{count:spawner:irongolem}'
  133. - ''
  134. - '&e&l-- Materials --'
  135. - '&dEmerald Block: &b{count:material:emerald_block}'
  136. - '&dDiamond Block: &b{count:material:diamond_block}'
  137. - '&dGold Block: &b{count:material:gold_block}'
  138. - '&dIron Block: &b{count:material:iron_block}'
  139. - '&dCoal Block: &b{count:material:coal_block}'
  140. footer: ''
  141. permission: '&cYou do not have permission.'
  142. recalculation-start: '&eAll faction totals are being resynchronized'
  143. recalculation-finish: '&eResynchronization of faction totals complete'
  144. recalculation-stop: '&eResynchronization of faction totals stopped'
  145. gui-settings:
  146. command-aliases:
  147. - f topgui
  148. line-count: 1
  149. inventory-name: '&lTop Factions | Page {page:this}'
  150. layout:
  151. - type: button_back
  152. enabled:
  153. text: '&bBack'
  154. lore: []
  155. material: wool
  156. data: 5
  157. disabled:
  158. text: '&7Back'
  159. lore: []
  160. material: wool
  161. data: 14
  162. - type: faction_list
  163. faction-count: 7
  164. fill-empty: true
  165. text: '&e{rank}. {relcolor}{faction} &b{worth:total}'
  166. lore:
  167. - '&e&l-- General --'
  168. - '&dTotal Worth: &b{worth:total}'
  169. - '&dBlock Worth: &b{worth:block}'
  170. - '&dChest Worth: &b{worth:chest}'
  171. - '&dSpawner Worth: &b{worth:spawner}'
  172. - '&dPlayer Balances: &b{worth:player_balance}'
  173. - '&dFaction Bank: &b{worth:faction_balance}'
  174. - ''
  175. - '&e&l-- Spawners --'
  176. - '&dSlime: &b{count:spawner:slime}'
  177. - '&dSkeleton: &b{count:spawner:skeleton}'
  178. - '&dZombie: &b{count:spawner:zombie}'
  179. - ''
  180. - '&e&l-- Materials --'
  181. - '&dEmerald Block: &b{count:material:emerald_block}'
  182. - '&dDiamond Block: &b{count:material:diamond_block}'
  183. - '&dGold Block: &b{count:material:gold_block}'
  184. - '&dIron Block: &b{count:material:iron_block}'
  185. - '&dCoal Block: &b{count:material:coal_block}'
  186. - '&dObsidian Block: &b{count:material:Obsidian}'
  187. - '&dAnvil: &b{count:material:Anvil}'
  188. - type: button_next
  189. enabled:
  190. text: '&bNext'
  191. lore: []
  192. material: wool
  193. data: 5
  194. disabled:
  195. text: '&7Next'
  196. lore: []
  197. material: wool
  198. data: 14
  199. settings:
  200. command-aliases:
  201. - f top
  202. ignored-faction-ids:
  203. - none
  204. - safezone
  205. - warzone
  206. - '0'
  207. - '-1'
  208. - '-2'
  209. disable-chest-events: false
  210. factions-per-page: 9
  211. sign-update-ticks: 1
  212. liquid-update-ticks: 100
  213. chunk-queue-size: 200
  214. recalculate-chunks-per-tick: 50
  215. chunk-recalculate-millis: 120000
  216. chat:
  217. enabled: false
  218. rank-placeholder: '{factions_top_rank}'
  219. rank-found: '&2[&e#{rank}&2]'
  220. rank-not-found: ''
  221. placeholders:
  222. faction-not-found: '-'
  223. enabled-ranks:
  224. - 1
  225. - 2
  226. - 3
  227. database:
  228. jdbc-url: jdbc:h2:./plugins/FactionsTop/database
  229. username: root
  230. password: pa$$w0rd
  231. maximum-pool-size: 10
  232. max-lifetime: 5000
  233. idle-timeout: 5000
  234. connection-timeout: 5000
  235. persist-interval: 60000
  236. persist-factions: false
  237. enabled:
  238. chest: true
  239. player_balance: false
  240. faction_balance: false
  241. spawner: true
  242. block: true
  243. perform-recalculate:
  244. command: true
  245. unload: true
  246. claim: true
  247. break: true
  248. place: true
  249. explode: true
  250. chest: true
  251. bypass-recalculate-delay:
  252. command: true
  253. unload: true
  254. claim: true
  255. break: false
  256. place: false
  257. explode: false
  258. chest: false
  259. spawner-prices:
  260. skeleton: 65000.0
  261. zombie: 50000.0
  262. cow: 150000.0
  263. sheep: 125000.0
  264. blaze: 100000.0
  265. pig: 80000.0
  266. chicken: 80000.0
  267. cavespider: 60000.0
  268. horse: 40000.0
  269. pigzombie: 400000.0
  270. enderman: 375000.0
  271. creeper: 800000.0
  272. irongolem: 2500000.0
  273. block-prices:
  274. gold_block: 216.0
  275. iron_block: 288.0
  276. diamond_block: 1152.0
  277. emerald_block: 288.0
  278. coal_block: 72.0
  279. obsidian_block: 75
  280. anvil: 800
Add Comment
Please, Sign In to add comment