Guest User

Untitled

a guest
Jun 17th, 2017
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.26 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. # - {factionstop_name:*}
  92. # - - The faction name of a rank by replacing * with a number.
  93. # - - The faction name in last place by replacing * with "last".
  94.  
  95. config-version: 7
  96. messages:
  97. count-format: '#,###'
  98. currency-format: $#,###.##
  99. button-back:
  100. enabled: '&b[<]'
  101. disabled: '&7[<]'
  102. tooltip:
  103. - '&dCommand: &b/f top {page:back}'
  104. button-next:
  105. enabled: '&b[>]'
  106. disabled: '&7[>]'
  107. tooltip:
  108. - '&dCommand: &b/f top {page:next}'
  109. header: '&6_______.[ &2Top Factions {button:back} &6{page:this}/{page:last} {button:next}
  110. &6]._______'
  111. no-entries: '&eNo entries to be displayed.'
  112. body:
  113. text: '&e{rank}. {relcolor}{faction} &b{worth:total}'
  114. tooltip:
  115. - '&e&l-- General --'
  116. - '&dTotal Worth: &b{worth:total}'
  117. - '&dBlock Worth: &b{worth:block}'
  118. - '&dChest Worth: &b{worth:chest}'
  119. - '&dSpawner Worth: &b{worth:spawner}'
  120. - '&dPlayer Balances: &b{worth:player_balance}'
  121. - '&dFaction Bank: &b{worth:faction_balance}'
  122. - ''
  123. - '&e&l-- Spawners --'
  124. - '&dSlime: &b{count:spawner:slime}'
  125. - '&dSkeleton: &b{count:spawner:skeleton}'
  126. - '&dZombie: &b{count:spawner:zombie}'
  127. - '&dSpider: &b{count:spawner:spider}'
  128. - '&dBlaze: &b{count:spawner:blaze}'
  129. - '&dCreeper: &b{count:spawner:creeper}'
  130. - '&dIron Golem: &b{count:spawner:iron_golem}'
  131. - '&dCow: &b{count:spawner:cow}'
  132. - '&dPig: &b{count:spawner:pig}'
  133. - '&dWolf: &b{count:spawner:wolf}'
  134. - '&dSheep: &b{count:spawner:sheep}'
  135. - '&dChicken: &b{count:spawner:CHICKEN}'
  136. - '&dZombiePigmen: &b{count:spawner:zombie_pigmen}'
  137. - '&dEnderman: &b{count:spawner:enderman}'
  138. - ''
  139. - '&e&l-- Materials --'
  140. - '&dEmerald Block: &b{count:material:emerald_block}'
  141. - '&dDiamond Block: &b{count:material:diamond_block}'
  142. - '&dGold Block: &b{count:material:gold_block}'
  143. - '&dIron Block: &b{count:material:iron_block}'
  144. - '&dCoal Block: &b{count:material:coal_block}'
  145. - '&dHopper: &b{count:material:minecraft_hopper}'
  146. footer: ''
  147. permission: '&cYou do not have permission.'
  148. recalculation-start: '&eAll faction totals are being resynchronized'
  149. recalculation-finish: '&eResynchronization of faction totals complete'
  150. recalculation-stop: '&eResynchronization of faction totals stopped'
  151. gui-settings:
  152. command-aliases:
  153. - f topgui
  154. line-count: 1
  155. inventory-name: '&lTop Factions | Page {page:this}'
  156. layout:
  157. - type: button_back
  158. enabled:
  159. text: '&bBack'
  160. lore: []
  161. material: wool
  162. data: 5
  163. disabled:
  164. text: '&7Back'
  165. lore: []
  166. material: wool
  167. data: 14
  168. - type: faction_list
  169. faction-count: 7
  170. fill-empty: true
  171. text: '&e{rank}. {relcolor}{faction} &b{worth:total}'
  172. lore:
  173. - '&e&l-- General --'
  174. - '&dTotal Worth: &b{worth:total}'
  175. - '&dBlock Worth: &b{worth:block}'
  176. - '&dChest Worth: &b{worth:chest}'
  177. - '&dSpawner Worth: &b{worth:spawner}'
  178. - '&dPlayer Balances: &b{worth:player_balance}'
  179. - '&dFaction Bank: &b{worth:faction_balance}'
  180. - ''
  181. - '&e&l-- Spawners --'
  182. - '&dSlime: &b{count:spawner:slime}'
  183. - '&dSkeleton: &b{count:spawner:skeleton}'
  184. - '&dZombie: &b{count:spawner:zombie}'
  185. - '$dSpider: &b{count:spawner:spider}'
  186. - '$dBlaze: &b{count:spawner:blaze}'
  187. - '$dCreeper: &b{count:spawner:creeper}'
  188. - '$dIron Golem: &b{count:spawner:iron_golem}'
  189. - '$dSpider: &b{count:spawner:cow}'
  190. - ''
  191. - '&e&l-- Materials --'
  192. - '&dEmerald Block: &b{count:material:emerald_block}'
  193. - '&dDiamond Block: &b{count:material:diamond_block}'
  194. - '&dGold Block: &b{count:material:gold_block}'
  195. - '&dIron Block: &b{count:material:iron_block}'
  196. - '&dCoal Block: &b{count:material:coal_block}'
  197. - type: button_next
  198. enabled:
  199. text: '&bNext'
  200. lore: []
  201. material: wool
  202. data: 5
  203. disabled:
  204. text: '&7Next'
  205. lore: []
  206. material: wool
  207. data: 14
  208. settings:
  209. command-aliases:
  210. - f top
  211. ignored-faction-ids:
  212. - none
  213. - safezone
  214. - warzone
  215. - '0'
  216. - '-1'
  217. - '-2'
  218. disable-chest-events: false
  219. factions-per-page: 9
  220. sign-update-ticks: 1
  221. liquid-update-ticks: 100
  222. chunk-queue-size: 200
  223. recalculate-chunks-per-tick: 50
  224. chunk-recalculate-millis: 120000
  225. chat:
  226. enabled: true
  227. rank-placeholder: '{factions_top_rank}'
  228. rank-found: '&2[&e#{rank}&2]'
  229. rank-not-found: ''
  230. placeholders:
  231. faction-not-found: '-'
  232. enabled-ranks:
  233. - 1
  234. - 2
  235. - 3
  236. database:
  237. jdbc-url: jdbc:h2:./plugins/FactionsTop/database
  238. username: root
  239. password: pa$$w0rd
  240. maximum-pool-size: 10
  241. max-lifetime: 5000
  242. idle-timeout: 5000
  243. connection-timeout: 5000
  244. persist-interval: 60000
  245. persist-factions: false
  246. enabled:
  247. chest: true
  248. player_balance: true
  249. faction_balance: true
  250. spawner: true
  251. block: true
  252. perform-recalculate:
  253. command: true
  254. unload: true
  255. claim: true
  256. break: true
  257. place: true
  258. explode: true
  259. chest: true
  260. bypass-recalculate-delay:
  261. command: true
  262. unload: true
  263. claim: true
  264. break: false
  265. place: false
  266. explode: false
  267. chest: false
  268. spawner-prices:
  269. skeleton: 125000.0
  270. zombie: 125000.0
  271. slime: 150000.0
  272. wolf: 100000.0
  273. chicken: 20000.0
  274. sheep: 20000.0
  275. pig: 20000.0
  276. cow: 7500.0
  277. spider: 100000.0
  278. blaze: 300000.0
  279. zombie_pigmen: 2000000.0
  280. creeper: 500000.0
  281. enderman: 2000000.0
  282. iron_golem: 5000000.0
  283. cave_spider: 60000
  284.  
  285. block-prices:
  286. gold_block: 250.0
  287. iron_block: 75.0
  288. diamond_block: 1000.0
  289. emerald_block: 1250.0
  290. coal_block: 25.0
Add Comment
Please, Sign In to add comment