Guest User

Untitled

a guest
Aug 5th, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.37 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. # - PLAYER_BALANCE
  56. # - FACTION_BALANCE
  57. # - SPAWNER
  58. # - BLOCK
  59. #
  60. # Valid recalculation reasons (Case insensitive):
  61. # - COMMAND
  62. # - UNLOAD
  63. # - CLAIM
  64. # - BREAK
  65. # - PLACE
  66. # - EXPLODE
  67. # - CHEST
  68. #
  69. # Placeholders:
  70. # Header/Footer only:
  71. # - {button:back} - Goes to previous page.
  72. # - {button:next} - Goes to next page.
  73. #
  74. # Header, footer and body:
  75. # - {page:back} - Previous page number.
  76. # - {page:this} - Current page number.
  77. # - {page:next} - Next page number.
  78. # - {page:last} - Last page number.
  79. #
  80. # Body only:
  81. # - {rank} - Faction rank.
  82. # - {relcolor} - Relation color of the faction listed to the viewer.
  83. # - {faction} - Faction name.
  84. # - {worth:total} - Total worth of faction listed.
  85. # - {count:total:spawner} - Total spawner count.
  86. # - {worth:<worth type>} - Value of a specific worth type.
  87. # - {count:spawner:<spawner>} - Count of a specific spawner type.
  88. # - {count:material:<material>} - Count of a specific material.
  89. #
  90. # MVdW Placeholders:
  91. # {factions-top-rank-#} - The faction name of this specific rank.
  92. # {factions-top-rank-last} - The faction name ranked last place.
  93.  
  94. config-version: 7
  95. messages:
  96. count-format: '#,###'
  97. currency-format: $#,###.##
  98. button-back:
  99. enabled: '&c[<]'
  100. disabled: '&c[<]'
  101. tooltip:
  102. - '&dCommand: &b/f top {page:back}'
  103. button-next:
  104. enabled: '&c[>]'
  105. disabled: '&c[>]'
  106. tooltip:
  107. - '&dCommand: &b/f top {page:next}'
  108. header: '&6_______.[ &2Top Factions {button:back} &6{page:this}/{page:last} {button:next}
  109. &6]._______'
  110. no-entries: '&eNo entries to be displayed.'
  111. body:
  112. text: '&e{rank}. {relcolor}{faction} &b{worth:total}'
  113. tooltip:
  114. - '&e&l-- General --'
  115. - '&dTotal Worth: &b{worth:total}'
  116. - '&dBlock Worth: &b{worth:block}'
  117. - '&dChest Worth: &b{worth:chest}'
  118. - '&dSpawner Worth: &b{worth:spawner}'
  119. - '&dPlayer Balances: &b{worth:player_balance}'
  120. - '&dFaction Bank: &b{worth:faction_balance}'
  121. - ''
  122. - '&e&l-- Spawners --'
  123. - '&dSlime: &b{count:spawner:slime}'
  124. - '&dSkeleton: &b{count:spawner:skeleton}'
  125. - '&dZombie: &b{count:spawner:zombie}'
  126. - ''
  127. - '&e&l-- Materials --'
  128. - '&dEmerald Block: &b{count:material:emerald_block}'
  129. - '&dDiamond Block: &b{count:material:diamond_block}'
  130. - '&dGold Block: &b{count:material:gold_block}'
  131. - '&dIron Block: &b{count:material:iron_block}'
  132. - '&dCoal Block: &b{count:material:coal_block}'
  133. footer: ''
  134. permission: '&cYou do not have permission.'
  135. recalculation-start: '&4&l[!] &cAll faction totals are being resynchronized'
  136. recalculation-finish: '&4&l[!] &c&eResynchronization of faction totals complete'
  137. recalculation-stop: '&eResynchronization of faction totals stopped'
  138. gui-settings:
  139. command-aliases:
  140. - f topgui
  141. line-count: 1
  142. inventory-name: '&cTop Factions'
  143. layout:
  144. - type: button_back
  145. enabled:
  146. text: '&cBack'
  147. lore: []
  148. material: wool
  149. data: 14
  150. disabled:
  151. text: '&cBack'
  152. lore: []
  153. material: wool
  154. data: 14
  155. - type: faction_list
  156. faction-count: 7
  157. fill-empty: true
  158. text: '&c{rank}. {faction} &7(&c{worth:total}&7)'
  159. lore:
  160. - '&8&m---&r &cGeneral &8&m---'
  161. - '&7Total Worth: &c{worth:total}'
  162. - '&7Block Worth: &c{worth:block}'
  163. - '&7Chest Worth: &c{worth:chest}'
  164. - '&7Spawner Worth: &c{worth:spawner}'
  165. - '&7Player Balances: &c{worth:player_balance}'
  166. - '&7Faction Bank: &c{worth:faction_balance}'
  167. - ''
  168. - '&8&m---&r &cSpawners &8&m---'
  169. - '&7Blaze: &c{count:spawner:blaze}'
  170. - '&7Pigman: &c{count:spawner:pig_zombie}'
  171. - '&7Iron Golem: &c{count:spawner:iron_golem}'
  172. - '&7Total: &c{count:total:spawner}'
  173. - ''
  174. - '&8&m---&r &cBlocks &8&m---'
  175. - '&7Diamond Block: &c{count:material:diamond_block}'
  176. - '&7Obsidian: &c{count:material:obsidian}'
  177. - '&7Chests: &c{count:material:chest}'
  178. - type: button_next
  179. enabled:
  180. text: '&cNext'
  181. lore: []
  182. material: wool
  183. data: 14
  184. disabled:
  185. text: '&cNext'
  186. lore: []
  187. material: wool
  188. data: 14
  189. settings:
  190. command-aliases:
  191. - f top
  192. ignored-faction-ids:
  193. - none
  194. - safezone
  195. - warzone
  196. - '0'
  197. - '-1'
  198. - '-2'
  199. disable-chest-events: false
  200. factions-per-page: 9
  201. sign-update-ticks: 1
  202. liquid-update-ticks: 100
  203. chunk-queue-size: 200
  204. recalculate-chunks-per-tick: 50
  205. chunk-recalculate-millis: 120000
  206. chat:
  207. enabled: false
  208. rank-placeholder: '{factions_top_rank}'
  209. rank-found: '&2[&e#{rank}&2]'
  210. rank-not-found: ''
  211. placeholders:
  212. faction-not-found: '-'
  213. enabled-ranks:
  214. - 1
  215. - 2
  216. - 3
  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. chicken: 100000.0
  251. cow: 300000.0
  252. zombie: 150000.0
  253. skeleton: 250000.0
  254. spider: 350000.0
  255. creeper: 200000.0
  256. blaze: 750000.0
  257. pig_zombie:700000.0
  258. witch: 4000000.0
  259. enderman: 1000000.0
  260. iron_golem: 2500000.0
  261. block-prices:
  262. gold_block: 500.0
  263. iron_block: 250.0
  264. diamond_block: 750.0
  265. emerald_block: 1000.0
  266. obsidian: 1.0
  267. coal_block: 25.0
Add Comment
Please, Sign In to add comment