Guest User

F top

a guest
Jul 12th, 2018
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.33 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. - '&aTotal Worth: &b{worth:total}'
  117. - '&aBlock Worth: &b{worth:block}'
  118. - '&aChest Worth: &b{worth:chest}'
  119. - '&aSpawner Worth: &b{worth:spawner}'
  120. - '&aPlayer Balances: &b{worth:player_balance}'
  121. - '&aFaction Bank: &b{worth:faction_balance}'
  122. - ''
  123. - '&e&l-- Spawners --'
  124. - '&aSlime: &b{count:spawner:slime}'
  125. - '&aSkeleton: &b{count:spawner:skeleton}'
  126. - '&aZombie: &b{count:spawner:zombie}'
  127. - ''
  128. - '&e&l-- Materials --'
  129. - '&aEmerald Block: &b{count:material:emerald_block}'
  130. - '&aDiamond Block: &b{count:material:diamond_block}'
  131. - '&aGold Block: &b{count:material:gold_block}'
  132. - '&aIron Block: &b{count:material:iron_block}'
  133. - '&aCoal Block: &b{count:material:coal_block}'
  134. footer: ''
  135. permission: '&cYou do not have permission.'
  136. recalculation-start: '&eAll faction totals are being resynchronized'
  137. recalculation-finish: '&eResynchronization of faction totals complete'
  138. recalculation-stop: '&eResynchronization of faction totals stopped'
  139. gui-settings:
  140. command-aliases:
  141. - f top
  142. line-count: 1
  143. inventory-name: '&lTop Factions | Page {page:this}'
  144. layout:
  145. - type: button_back
  146. enabled:
  147. text: '&bBack'
  148. lore: []
  149. material: wool
  150. data: 5
  151. disabled:
  152. text: '&7Back'
  153. lore: []
  154. material: wool
  155. data: 14
  156. - type: faction_list
  157. faction-count: 7
  158. fill-empty: true
  159. text: '&e{rank}. {relcolor}{faction} &b{worth:total}'
  160. lore:
  161. - '&e&l-- General --'
  162. - '&aTotal Worth: &b{worth:total}'
  163. - '&aBlock Worth: &b{worth:block}'
  164. - '&aChest Worth: &b{worth:chest}'
  165. - '&aSpawner Worth: &b{worth:spawner}'
  166. - '&aPlayer Balances: &b{worth:player_balance}'
  167. - '&aFaction Bank: &b{worth:faction_balance}'
  168. - ''
  169. - '&e&l-- Materials --'
  170. - '&aEmerald Block: &b{count:material:emerald_block}'
  171. - '&aDiamond Block: &b{count:material:diamond_block}'
  172. - '&aGold Block: &b{count:material:gold_block}'
  173. - '&aIron Block: &b{count:material:iron_block}'
  174. - '&aCoal Block: &b{count:material:coal_block}'
  175. - type: button_next
  176. enabled:
  177. text: '&bNext'
  178. lore: []
  179. material: wool
  180. data: 5
  181. disabled:
  182. text: '&7Next'
  183. lore: []
  184. material: wool
  185. data: 14
  186. settings:
  187. command-aliases:
  188. - f top
  189. ignored-faction-ids:
  190. - none
  191. - safezone
  192. - warzone
  193. - '0'
  194. - '-1'
  195. - '-2'
  196. disable-chest-events: false
  197. factions-per-page: 9
  198. sign-update-ticks: 1
  199. liquid-update-ticks: 100
  200. chunk-queue-size: 200
  201. recalculate-chunks-per-tick: 50
  202. chunk-recalculate-millis: 120000
  203. chat:
  204. enabled: false
  205. rank-placeholder: '{factions_top_rank}'
  206. rank-found: '&2[&e#{rank}&2]'
  207. rank-not-found: ''
  208. placeholders:
  209. faction-not-found: '-'
  210. enabled-ranks:
  211. - 1
  212. - 2
  213. - 3
  214. database:
  215. jdbc-url: jdbc:h2:./plugins/FactionsTop/database
  216. username: root
  217. password: pa$$w0rd
  218. maximum-pool-size: 10
  219. max-lifetime: 5000
  220. idle-timeout: 5000
  221. connection-timeout: 5000
  222. persist-interval: 60000
  223. persist-factions: false
  224. enabled:
  225. chest: true
  226. player_balance: false
  227. faction_balance: false
  228. spawner: true
  229. block: true
  230. perform-recalculate:
  231. command: true
  232. unload: true
  233. claim: true
  234. break: true
  235. place: true
  236. explode: true
  237. chest: true
  238. bypass-recalculate-delay:
  239. command: true
  240. unload: true
  241. claim: true
  242. break: false
  243. place: false
  244. explode: false
  245. chest: false
  246. spawner-prices:
  247. chicken: 20000.0
  248. sheep: 20000.0
  249. pig: 30000.0
  250. cow: 50000.0
  251. skeleton: 100000.0
  252. spider: 100000.0
  253. cave_spider: 100000.0
  254. zombie: 150000.0
  255. slime: 150000.0
  256. enderman: 500000.0
  257. blaze: 750000.0
  258. villager_golem: 1250000.0
  259. creeper: 1750000.0
  260. villager: 2250000.0
  261. silverfish: 5000000.0
  262. block-prices:
  263. gold_block: 250.0
  264. iron_block: 150.0
  265. diamond_block: 1000.0
  266. emerald_block: 1250.0
Add Comment
Please, Sign In to add comment