Guest User

Config

a guest
Aug 4th, 2017
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.34 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: '&e&lTop factions by total worth: &6&l(&f&l{page:this}&6&l/&f&l{page:last}&6&l)'
  110. no-entries: '&eNo entries to be displayed.'
  111. body:
  112. text: '&e&l{rank}. {relcolor}{faction} &f&l: &6&l{worth:total}'
  113. tooltip:
  114. - '&6&l{faction}'
  115. - ''
  116. - '&6&l-=- General -=-'
  117. - ''
  118. - '&eBlock Worth : &6{worth:block}'
  119. - '&eChest Worth : &6{worth:chest}'
  120. - '&eSpawner Worth : &6{worth:spawner}'
  121. - '&ePlayer Balances : &6{worth:player_balance}'
  122. - ''
  123. - '&6&l-=- Spawners -=-'
  124. - ''
  125. - '&eBlaze : &6{count:spawner:blaze}'
  126. - '&eIron Golem : &6{count:spawner:iron_golem}'
  127. - '&eZombie : &6{count:spawner:zombie}'
  128. - '&eSkeleton : &6{count:spawner:skeleton}'
  129. - '&eCreeper : &6{count:spawner:creeper}'
  130. - '&eCave Spider : &6{count:spawner:cave_spider}'
  131. - '&eCow : &6{count:spawner:cow}'
  132. - '&ePig : &6{count:spawner:pig}'
  133. - ''
  134. - '&6&l-=- Materials -=-'
  135. - ''
  136. - '&eObsidian : &6{count:material:obsidian}'
  137. - '&eHopper : &6{count:material:hopper}'
  138. footer: ''
  139. permission: '&cYou do not have permission.'
  140. recalculation-start: '&eAll faction totals are being resynchronized'
  141. recalculation-finish: '&eResynchronization of faction totals complete'
  142. recalculation-stop: '&eResynchronization of faction totals stopped'
  143. gui-settings:
  144. command-aliases:
  145. - f topgui
  146. line-count: 1
  147. inventory-name: '&lTop Factions | 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: '&e{rank}. {relcolor}{faction} &b{worth:total}'
  164. lore:
  165. - '&6&l{faction}'
  166. - ''
  167. - '&6&l-=- General -=-'
  168. - ''
  169. - '&eBlock Worth : &6{worth:block}'
  170. - '&eChest Worth : &6{worth:chest}'
  171. - '&eSpawner Worth : &6{worth:spawner}'
  172. - '&ePlayer Balances : &6{worth:player_balance}'
  173. - ''
  174. - '&6&l-=- Spawners -=-'
  175. - ''
  176. - '&eBlaze : &6{count:spawner:blaze}'
  177. - '&eIron Golem : &6{count:spawner:iron_golem}'
  178. - '&eZombie : &6{count:spawner:zombie}'
  179. - '&eSkeleton : &6{count:spawner:skeleton}'
  180. - '&eCreeper : &6{count:spawner:creeper}'
  181. - '&eCave Spider : &6{count:spawner:cave_spider}'
  182. - '&eCow : &6{count:spawner:cow}'
  183. - '&ePig : &6{count:spawner:pig}'
  184. - ''
  185. - '&6&l-=- Materials -=-'
  186. - ''
  187. - '&eObsidian : &6{count:material:obsidian}'
  188. - '&eHopper : &6{count:material:hopper}'
  189. - type: button_next
  190. enabled:
  191. text: '&bNext'
  192. lore: []
  193. material: wool
  194. data: 5
  195. disabled:
  196. text: '&7Next'
  197. lore: []
  198. material: wool
  199. data: 14
  200. settings:
  201. command-aliases:
  202. - f top
  203. ignored-faction-ids:
  204. - none
  205. - safezone
  206. - warzone
  207. - '0'
  208. - '-1'
  209. - '-2'
  210. disable-chest-events: false
  211. factions-per-page: 10
  212. sign-update-ticks: 1
  213. liquid-update-ticks: 100
  214. chunk-queue-size: 200
  215. recalculate-chunks-per-tick: 50
  216. chunk-recalculate-millis: 120000
  217. chat:
  218. enabled: false
  219. rank-placeholder: '{factions_top_rank}'
  220. rank-found: '&2[&e#{rank}&2]'
  221. rank-not-found: ''
  222. placeholders:
  223. faction-not-found: '-'
  224. enabled-ranks:
  225. - 1
  226. - 2
  227. - 3
  228. database:
  229. jdbc-url: jdbc:h2:./plugins/FactionsTop/database
  230. username: root
  231. password: pa$$w0rd
  232. maximum-pool-size: 10
  233. max-lifetime: 5000
  234. idle-timeout: 5000
  235. connection-timeout: 5000
  236. persist-interval: 60000
  237. persist-factions: false
  238. enabled:
  239. chest: true
  240. player_balance: true
  241. faction_balance: true
  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. skeleton: 25000.0
  262. zombie: 25000.0
  263. iron_golem: 1250000.0
  264. blaze: 750000.0
  265. creeper: 420000.0
  266. cave_spider: 150000.0
  267. cow: 15000.0
  268. pig: 12500.0
  269. block-prices:
  270. hopper: 100.0
  271. obsidian: 25.0
Add Comment
Please, Sign In to add comment