Guest User

Untitled

a guest
Dec 1st, 2017
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.00 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. - '&a&l-- General --'
  116. - '&7Total Worth: &9{worth:total}'
  117. - '&7Block Worth: &9{worth:block}'
  118. - '&7Chest Worth: &9{worth:chest}'
  119. - '&7Spawner Worth: &9{worth:spawner}'
  120. - '&7Player Balances: &9{worth:player_balance}'
  121. - '&a&l-- Spawners --'
  122. - '&7Blaze: &9{count:spawner:blaze}'
  123. - '&7Zombie: &9{count:spawner:zombie}'
  124. - '&7Skeleton: &9{count:spawner:skeleton}'
  125. - '&7Creeper: &9{count:spawner:creeper}'
  126. - '&7Spider: &9{count:spawner:spider}'
  127. - '&7Chicken: &9{count:spawner:chicken}'
  128. - '&7Cow: &9{count:spawner:cow}'
  129. - '&7Pig: &9{count:spawner:pig}'
  130. - '&7Pigman: &9{count:spawner:pig_zombie}'
  131. - '&7Iron golem: &9{count:spawner:iron_golem}'
  132. - '&a&l-- Materials --'
  133. - '&7Gold Block: &9{count:material:gold_block}'
  134. - '&7Iron Block: &9{count:material:iron_block}'
  135. - '&7Diamond Block: &9{count:material:diamond_block}'
  136. - '&7Emerald Block: &9{count:material:emerald_block}'
  137. - '&7Obsidian: &9{count:material:obsidian}'
  138. - '&7Hopper: &9{count:material:hopper}'
  139. footer: ''
  140. permission: '&cYou do not have permission.'
  141. recalculation-start: '&eAll faction totals are being resynchronized'
  142. recalculation-finish: '&eResynchronization of faction totals complete'
  143. recalculation-stop: '&eResynchronization of faction totals stopped'
  144. gui-settings:
  145. command-aliases:
  146. - f topgui
  147. - f top
  148. - ftop
  149. line-count: 1
  150. inventory-name: '&lTop Factions | Page {page:this}'
  151. layout:
  152. - type: button_back
  153. enabled:
  154. text: '&bBack'
  155. lore: []
  156. material: wool
  157. data: 5
  158. disabled:
  159. text: '&7Back'
  160. lore: []
  161. material: wool
  162. data: 14
  163. - type: faction_list
  164. faction-count: 7
  165. fill-empty: true
  166. text: '&e{rank}. {relcolor}{faction} &9{worth:total}'
  167. lore:
  168. - '&a&l-- General --'
  169. - '&7Total Worth: &9{worth:total}'
  170. - '&7Block Worth: &9{worth:block}'
  171. - '&7Chest Worth: &9{worth:chest}'
  172. - '&7Spawner Worth: &9{worth:spawner}'
  173. - '&7Player Balances: &9{worth:player_balance}'
  174. - '&a&l-- Spawners --'
  175. - '&7Blaze: &9{count:spawner:blaze}'
  176. - '&7Zombie: &9{count:spawner:zombie}'
  177. - '&7Skeleton: &9{count:spawner:skeleton}'
  178. - '&7Creeper: &9{count:spawner:creeper}'
  179. - '&7Spider: &9{count:spawner:spider}'
  180. - '&7Chicken: &9{count:spawner:chicken}'
  181. - '&7Cow: &9{count:spawner:cow}'
  182. - '&7Pig: &9{count:spawner:pig}'
  183. - '&7Pigman: &9{count:spawner:pig_zombie}'
  184. - '&7Iron golem: &9{count:spawner:iron_golem}'
  185. - '&a&l-- Materials --'
  186. - '&7Gold Block: &9{count:material:gold_block}'
  187. - '&7Iron Block: &9{count:material:iron_block}'
  188. - '&7Diamond Block: &9{count:material:diamond_block}'
  189. - '&7Emerald Block: &9{count:material:emerald_block}'
  190. - '&7Obsidian: &9{count:material:obsidian}'
  191. - '&7Hopper: &9{count:material:hopper}'
  192. - type: button_next
  193. enabled:
  194. text: '&bNext'
  195. lore: []
  196. material: wool
  197. data: 5
  198. disabled:
  199. text: '&7Next'
  200. lore: []
  201. material: wool
  202. data: 14
  203. settings:
  204. command-aliases:
  205. - f top
  206. ignored-faction-ids:
  207. - none
  208. - safezone
  209. - warzone
  210. - '0'
  211. - '-1'
  212. - '-2'
  213. disable-chest-events: true
  214. factions-per-page: 9
  215. sign-update-ticks: 1
  216. liquid-update-ticks: 100
  217. chunk-queue-size: 200
  218. recalculate-chunks-per-tick: 50
  219. chunk-recalculate-millis: 120000
  220. chat:
  221. enabled: false
  222. rank-placeholder: '{factions_top_rank}'
  223. rank-found: '&2[&e#{rank}&2]'
  224. rank-not-found: ''
  225. placeholders:
  226. faction-not-found: '-'
  227. enabled-ranks:
  228. - 1
  229. - 2
  230. - 3
  231. database:
  232. jdbc-url: jdbc:mysql://localhost:3306/ftop
  233. username: ftop
  234. password: cKYIBF0HtYUUlBEJ
  235. maximum-pool-size: 10
  236. max-lifetime: 5000
  237. idle-timeout: 5000
  238. connection-timeout: 5000
  239. persist-interval: 60000
  240. persist-factions: false
  241. enabled:
  242. chest: false
  243. player_balance: true
  244. faction_balance: false
  245. spawner: true
  246. block: true
  247. perform-recalculate:
  248. command: true
  249. unload: true
  250. claim: true
  251. break: true
  252. place: true
  253. explode: true
  254. chest: true
  255. bypass-recalculate-delay:
  256. command: true
  257. unload: true
  258. claim: true
  259. break: false
  260. place: false
  261. explode: false
  262. chest: false
  263. spawner-prices:
  264. blaze: 4000000.0
  265. zombie: 2000000.0
  266. skeleton: 2000000.0
  267. creeper: 6000000.0
  268. spider: 2000000.0
  269. chicken: 400000.0
  270. cow: 200000.0
  271. pig: 200000.0
  272. pig_zombie: 2000000.0
  273. iron_golem: 8000000.0
  274. block-prices:
  275. gold_block: 7200.0
  276. iron_block: 4500.0
  277. diamond_block: 9000.0
  278. emerald_block: 13500.0
  279. obsidian: 250.0
  280. hopper: 25000.0
Add Comment
Please, Sign In to add comment