Guest User

Untitled

a guest
May 21st, 2017
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.36 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. - '&dSkeleton: &b{count:spawner:skeleton}'
  125. - '&dCow: &b{count:spawner:cow}'
  126. - '&dSheep: &b{count:spawner:sheep}'
  127. - '&dBlaze: &b{count:spawner:blaze}'
  128. - '&dPig: &b{count:spawner:pig}'
  129. - '&dChicken: &b{count:spawner:chicken}'
  130. - '&dHorse: &b{count:spawner:horse}'
  131. - '&dZombie: &b{count:spawner:zombie}'
  132. - '&dCave Spider: &b{count:spawner:cave_spider}'
  133. - '&dSpider: &b{count:spawner:spider}'
  134. - '&dEnderman: &b{count:spawner:enderman}'
  135. - '&dPigZombie: &b{count:spawner:pig_zombie}'
  136. - '&dCreeper: &b{count:spawner:creeper}'
  137. - '&dIronGolem: &b{count:spawner:iron_golem}'
  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. footer: ''
  146. permission: '&cYou do not have permission.'
  147. recalculation-start: '&eAll faction totals are being resynchronized'
  148. recalculation-finish: '&eResynchronization of faction totals complete'
  149. recalculation-stop: '&eResynchronization of faction totals stopped'
  150. gui-settings:
  151. command-aliases:
  152. - f topgui
  153. line-count: 1
  154. inventory-name: '&lTop Factions | Page {page:this}'
  155. layout:
  156. - type: button_back
  157. enabled:
  158. text: '&bBack'
  159. lore: []
  160. material: wool
  161. data: 5
  162. disabled:
  163. text: '&7Back'
  164. lore: []
  165. material: wool
  166. data: 14
  167. - type: faction_list
  168. faction-count: 7
  169. fill-empty: true
  170. text: '&e{rank}. {relcolor}{faction} &b{worth:total}'
  171. lore:
  172. - '&e&l-- General --'
  173. - '&dTotal Worth: &b{worth:total}'
  174. - '&dBlock Worth: &b{worth:block}'
  175. - '&dChest Worth: &b{worth:chest}'
  176. - '&dSpawner Worth: &b{worth:spawner}'
  177. - ''
  178. - '&e&l-- Spawners --'
  179. - '&dSkeleton: &b{count:spawner:skeleton}'
  180. - '&dCow: &b{count:spawner:cow}'
  181. - '&dSheep: &b{count:spawner:sheep}'
  182. - '&dBlaze: &b{count:spawner:blaze}'
  183. - '&dPig: &b{count:spawner:pig}'
  184. - '&dChicken: &b{count:spawner:chicken}'
  185. - '&dHorse: &b{count:spawner:horse}'
  186. - '&dZombie: &b{count:spawner:zombie}'
  187. - '&dCave Spider: &b{count:spawner:cave_spider}'
  188. - '&dSpider: &b{count:spawner:spider}'
  189. - '&dEnderman: &b{count:spawner:enderman}'
  190. - '&dPigZombie: &b{count:spawner:pig_zombie}'
  191. - '&dCreeper: &b{count:spawner:creeper}'
  192. - '&dIronGolem: &b{count:spawner:iron_golem}'
  193. - ''
  194. - '&e&l-- Materials --'
  195. - '&dEmerald Block: &b{count:material:emerald_block}'
  196. - '&dDiamond Block: &b{count:material:diamond_block}'
  197. - '&dGold Block: &b{count:material:gold_block}'
  198. - '&dIron Block: &b{count:material:iron_block}'
  199. - '&dCoal Block: &b{count:material:coal_block}'
  200. - type: button_next
  201. enabled:
  202. text: '&bNext'
  203. lore: []
  204. material: wool
  205. data: 5
  206. disabled:
  207. text: '&7Next'
  208. lore: []
  209. material: wool
  210. data: 14
  211. settings:
  212. command-aliases:
  213. - f top
  214. ignored-faction-ids:
  215. - none
  216. - safezone
  217. - warzone
  218. - '0'
  219. - '-1'
  220. - '-2'
  221. disable-chest-events: false
  222. factions-per-page: 9
  223. sign-update-ticks: 1
  224. liquid-update-ticks: 100
  225. chunk-queue-size: 200
  226. recalculate-chunks-per-tick: 50
  227. chunk-recalculate-millis: 120000
  228. chat:
  229. enabled: false
  230. rank-placeholder: '{factions_top_rank}'
  231. rank-found: '&2[&e#{rank}&2]'
  232. rank-not-found: ''
  233. placeholders:
  234. faction-not-found: '-'
  235. enabled-ranks:
  236. - 1
  237. - 2
  238. - 3
  239. database:
  240. jdbc-url: jdbc:h2:./plugins/FactionsTop/database
  241. username: root
  242. password: pa$$w0rd
  243. maximum-pool-size: 10
  244. max-lifetime: 5000
  245. idle-timeout: 5000
  246. connection-timeout: 5000
  247. persist-interval: 60000
  248. persist-factions: false
  249. enabled:
  250. chest: true
  251. player_balance: true
  252. faction_balance: true
  253. spawner: true
  254. block: true
  255. perform-recalculate:
  256. command: true
  257. unload: true
  258. claim: true
  259. break: true
  260. place: true
  261. explode: true
  262. chest: true
  263. bypass-recalculate-delay:
  264. command: true
  265. unload: true
  266. claim: true
  267. break: false
  268. place: false
  269. explode: false
  270. chest: false
  271. spawner-prices:
  272. skeleton: 65000.0
  273. cow: 150000.0
  274. sheep: 125000.0
  275. blaze: 100000.0
  276. pig: 80000.0
  277. chicken: 80000.0
  278. horse: 40000.0
  279. zombie: 50000.0
  280. cave_spider: 60000.0
  281. spider: 60000.0
  282. enderman: 375000.0
  283. pig_zombie: 400000.0
  284. creeper: 800000.0
  285. iron_golem: 2500000.0
  286. block-prices:
  287. gold_block: 216.0
  288. iron_block: 288.0
  289. diamond_block: 1152.0
  290. emerald_block: 288.0
  291. coal_block: 36.0
Add Comment
Please, Sign In to add comment