Guest User

Untitled

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