Guest User

FactionsTOP

a guest
Nov 17th, 2018
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.02 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: '&a[<]'
  101. disabled: '&c[<]'
  102. tooltip:
  103. - '&8* &dCommand: &7/f top {page:back}'
  104. button-next:
  105. enabled: '&a[>]'
  106. disabled: '&c[>]'
  107. tooltip:
  108. - '&8* &dCommand: &7/f top {page:next}'
  109. header: '&8&m*--------------------*&r &b&lTop Factions&r &8&m*--------------------*&r'
  110. no-entries: '&eNo entries to be displayed.'
  111. body:
  112. text: '&8&l(&b#{rank}&8&l) {relcolor}{faction} &8[&b{worth:total}&8]'
  113. tooltip:
  114. - '&8&m*------------------------------*'
  115. - '&r &3&nGeneral'
  116. - '&8* &bTotal Worth: &7{worth:total}'
  117. - '&8* &bBlock Worth: &7{worth:block}'
  118. - '&8* &bChest Worth: &7{worth:chest}'
  119. - '&8* &bSpawner Worth: &7{worth:spawner}'
  120. - '&8* &bPlayer Balances: &7{worth:player_balance}'
  121. # - '&8* &bFaction Bank: &7{worth:faction_balance}' ENABLE IF YOU HAVE FACTION BANK ENABLED.
  122. - ''
  123. - '&8&m*------------------------------*'
  124. - '&r &3&nSpawners'
  125. - '&8* &bCreeper: &7{count:spawner:creeper}'
  126. - '&8* &bEnderman: &7{count:spawner:enderman}'
  127. - '&8* &bBlaze: &7{count:spawner:blaze}'
  128. - '&8* &bIron Golem: &7{count:spawner:iron_golem}'
  129. - ''
  130. - '&8&m*------------------------------*'
  131. - '&r &3&nBlocks'
  132. - '&8* &bEmerald Block: &7{count:material:emerald_block}'
  133. - '&8* &bDiamond Block: &7{count:material:diamond_block}'
  134. - '&8* &bGold Block: &7{count:material:gold_block}'
  135. - '&8* &bIron Block: &7{count:material:iron_block}'
  136. - '&8* &bCoal Block: &7{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 top
  145. - ftop
  146. line-count: 1
  147. inventory-name: '&nTop Factions&r (Page: {page:this})'
  148. layout:
  149. - type: button_back
  150. enabled:
  151. text: '&bBack'
  152. lore: []
  153. material: wool
  154. data: 5
  155. disabled:
  156. text: '&7Back'
  157. lore: []
  158. material: wool
  159. data: 14
  160. - type: faction_list
  161. faction-count: 7
  162. fill-empty: true
  163. text: '&8&l(&b#{rank}&8&l) {relcolor}{faction} &8[&b{worth:total}&8]'
  164. lore:
  165. - '&8&m*------------------------------*'
  166. - '&r &3&nGeneral'
  167. - '&8* &bTotal Worth: &7{worth:total}'
  168. - '&8* &bBlock Worth: &7{worth:block}'
  169. - '&8* &bChest Worth: &7{worth:chest}'
  170. - '&8* &bSpawner Worth: &7{worth:spawner}'
  171. - '&8* &bPlayer Balances: &7{worth:player_balance}'
  172. # - '&8* &bFaction Bank: &7{worth:faction_balance}' ENABLE IF YOU HAVE FACTION BANK ENABLED.
  173. - ''
  174. - '&8&m*------------------------------*'
  175. - '&r &3&nSpawners'
  176. - '&8* &bCreeper: &7{count:spawner:creeper}'
  177. - '&8* &bEnderman: &7{count:spawner:enderman}'
  178. - '&8* &bBlaze: &7{count:spawner:blaze}'
  179. - '&8* &bIron Golem: &7{count:spawner:iron_golem}'
  180. - ''
  181. - '&8&m*------------------------------*'
  182. - '&r &3&nBlocks'
  183. - '&8* &bEmerald Block: &7{count:material:emerald_block}'
  184. - '&8* &bDiamond Block: &7{count:material:diamond_block}'
  185. - '&8* &bGold Block: &7{count:material:gold_block}'
  186. - '&8* &bIron Block: &7{count:material:iron_block}'
  187. - '&8* &bCoal Block: &7{count:material:coal_block}'
  188. - type: button_next
  189. enabled:
  190. text: '&aNext'
  191. lore: []
  192. material: wool
  193. data: 5
  194. disabled:
  195. text: '&cNext'
  196. lore: []
  197. material: wool
  198. data: 14
  199. settings:
  200. command-aliases:
  201. - f topchat
  202. ignored-faction-ids:
  203. - none
  204. - safezone
  205. - warzone
  206. - '0'
  207. - '-1'
  208. - '-2'
  209. disable-chest-events: false
  210. factions-per-page: 9
  211. sign-update-ticks: 1
  212. liquid-update-ticks: 100
  213. chunk-queue-size: 200
  214. recalculate-chunks-per-tick: 50
  215. chunk-recalculate-millis: 120000
  216. chat:
  217. enabled: false
  218. rank-placeholder: '{factions_top_rank}'
  219. rank-found: '&8(&b#{rank}&8)'
  220. rank-not-found: ''
  221. placeholders:
  222. faction-not-found: '-'
  223. enabled-ranks:
  224. - 1
  225. - 2
  226. - 3
  227. database:
  228. jdbc-url: jdbc:h2:./plugins/FactionsTop/database
  229. username: root
  230. password: pa$$w0rd
  231. maximum-pool-size: 10
  232. max-lifetime: 5000
  233. idle-timeout: 5000
  234. connection-timeout: 5000
  235. persist-interval: 60000
  236. persist-factions: false
  237. enabled:
  238. chest: true
  239. player_balance: true
  240. faction_balance: false
  241. # SET ABOVE TO TRUE IF YOU HAVE FACTIONS BALANCE.
  242. spawner: true
  243. block: true
  244. perform-recalculate:
  245. command: true
  246. unload: true
  247. claim: true
  248. break: true
  249. place: true
  250. explode: true
  251. chest: true
  252. bypass-recalculate-delay:
  253. command: true
  254. unload: true
  255. claim: true
  256. break: false
  257. place: false
  258. explode: false
  259. chest: false
  260. spawner-prices:
  261. creeper: 150000.0
  262. enderman: 165000.0
  263. blaze: 170000.0
  264. iron_golem: 800000.0
  265. block-prices:
  266. gold_block: 141.0
  267. iron_block: 85.0
  268. diamond_block: 282.0
  269. emerald_block: 479.0
  270. coal_block: 23.0
Add Comment
Please, Sign In to add comment