Guest User

Untitled

a guest
Aug 18th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.48 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: '&b[<]'
  100. disabled: '&7[<]'
  101. tooltip:
  102. - '&7Last Page'
  103. button-next:
  104. enabled: '&b[>]'
  105. disabled: '&7[>]'
  106. tooltip:
  107. - '&7Next Page'
  108. header: '&6---------[&5&lTop&7&lFactions&6 {button:back} &6{page:this}/{page:last} {button:next}
  109. &6]--------'
  110. no-entries: '&eNo entries to be displayed.'
  111. body:
  112. text: '&5&l{rank}. {relcolor}{faction} &f- &7{worth:total}'
  113. tooltip:
  114. - '&5&l-- General --'
  115. - '&dTotal Worth: &7&l{worth:total}'
  116. - '&dBlock Worth: &7&l{worth:block}'
  117. - '&dChest Worth: &7&l{worth:chest}'
  118. - '&dSpawner Worth: &7&l{worth:spawner}'
  119. - '&dFaction Bank: &7&l{worth:faction_balance}'
  120. - ''
  121. - '&5&l-- Spawners --'
  122. - '&dBlaze: &7&l{count:spawner:blaze}'
  123. - '&dCreeper: &7&l{count:spawner:creeper}'
  124. - '&dEnderman: &7&l{count:spawner:enderman}'
  125. - '&dIron Golem: &7&l{count:spawner:iron_golem}'
  126. - '&dZombie Pigman: &7&l{count:spawner:pig_zombie}'
  127. - ''
  128. - '&5&l-- Materials --'
  129. - '&dEmerald Block: &7&l{count:material:emerald_block}'
  130. - '&dDiamond Block: &7&l{count:material:diamond_block}'
  131. - '&dGold Block: &7&l{count:material:gold_block}'
  132. - '&dIron Block: &7&l{count:material:iron_block}'
  133. - '&dHopper: &7&l{count:material:hopper}'
  134. footer: ''
  135. permission: '&cYou do not have permission.'
  136. recalculation-start: '&7Faction Top values are being updated'
  137. recalculation-finish: '&7Faction Top values have been updated'
  138. recalculation-stop: '&eResynchronization of faction totals stopped'
  139. gui-settings:
  140. command-aliases:
  141. - ftopgui
  142. - f topgui
  143. line-count: 1
  144. inventory-name: '&lTop Factions'
  145. layout:
  146. - type: button_back
  147. enabled:
  148. text: '&bBack'
  149. lore: []
  150. material: wool
  151. data: 5
  152. disabled:
  153. text: '&7Back'
  154. lore: []
  155. material: wool
  156. data: 14
  157. - type: faction_list
  158. faction-count: 7
  159. fill-empty: true
  160. text: '&c{rank}. {faction} &7(&c{worth:total}&7)'
  161. lore:
  162. - '&5&l-- General --'
  163. - '&dTotal Worth: &7&l{worth:total}'
  164. - '&dBlock Worth: &7&l{worth:block}'
  165. - '&dChest Worth: &7&l{worth:chest}'
  166. - '&dSpawner Worth: &7&l{worth:spawner}'
  167. - '&dFaction Bank: &7&l{worth:faction_balance}'
  168. - ''
  169. - '&5&l-- Spawners --'
  170. - '&dBlaze: &7&l{count:spawner:blaze}'
  171. - '&dCreeper: &7&l{count:spawner:creeper}'
  172. - '&dEnderman: &7&l{count:spawner:enderman}'
  173. - '&dIron Golem:: &7&l{count:spawner:iron_golem}'
  174. - ''
  175. - '&5&l-- Materials --'
  176. - '&dEmerald Block: &7&l{count:material:emerald_block}'
  177. - '&dDiamond Block: &7&l{count:material:diamond_block}'
  178. - '&dGold Block: &7&l{count:material:gold_block}'
  179. - '&dIron Block: &7&l{count:material:iron_block}'
  180. - '&dHopper: &7&l{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. - ftop
  196. ignored-faction-ids:
  197. - none
  198. - safezone
  199. - warzone
  200. - '0'
  201. - '-1'
  202. - '-2'
  203. disable-chest-events: false
  204. factions-per-page: 10
  205. sign-update-ticks: 1
  206. liquid-update-ticks: 100
  207. chunk-queue-size: 200
  208. recalculate-chunks-per-tick: 50
  209. chunk-recalculate-millis: 120000
  210. chat:
  211. enabled: false
  212. rank-placeholder: '{factions_top_rank}'
  213. rank-found: '&2[&e#{rank}&2]'
  214. rank-not-found: ''
  215. placeholders:
  216. faction-not-found: '-'
  217. enabled-ranks:
  218. - 1986
  219. database:
  220. jdbc-url: jdbc:h2:./plugins/FactionsTop/database
  221. username: root
  222. password: pa$$w0rd
  223. maximum-pool-size: 10
  224. max-lifetime: 5000
  225. idle-timeout: 5000
  226. connection-timeout: 5000
  227. persist-interval: 60000
  228. persist-factions: false
  229. enabled:
  230. chest: true
  231. player_balance: false
  232. faction_balance: true
  233. spawner: true
  234. block: true
  235. perform-recalculate:
  236. command: true
  237. unload: true
  238. claim: true
  239. break: true
  240. place: true
  241. explode: true
  242. chest: true
  243. bypass-recalculate-delay:
  244. command: true
  245. unload: true
  246. claim: true
  247. break: false
  248. place: false
  249. explode: false
  250. chest: false
  251. spawner-prices:
  252. chicken: 10000.0
  253. pig: 35000.0
  254. sheep: 20000.0
  255. cow: 110000.0
  256. zombie: 75000.0
  257. skeleton: 275000.0
  258. spider: 70000.0
  259. creeper: 600000.0
  260. blaze: 400000.0
  261. enderman: 750000.0
  262. iron_golem: 1250000.0
  263. pig_zombie: 3000000.0
  264. block-prices:
  265. gold_block: 810.0
  266. iron_block: 498.0
  267. diamond_block: 1350.0
  268. emerald_block: 1800.0
  269. obsidian: 10.0
  270. hopper: 7500.0
Add Comment
Please, Sign In to add comment