Guest User

Untitled

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