Advertisement
Guest User

Untitled

a guest
Aug 7th, 2016
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.36 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 commands to rebind to "/ftop".
  6. # - ignored-faction-ids: Faction IDs to not calculate for factions top.
  7. # - disable-chest-events: Disables chest events, improves performance.
  8. # - factions-per-page: Number of factions displayed per page in "/ftop".
  9. # - sign-update-ticks: Duration in ticks between sign updates.
  10. # - liquid-update-ticks: Duration in ticks between liquid economy updates.
  11. # - chunk-queue-size: Hard-limit maximum chunks to be queued for recalculation.
  12. # - chunk-recalculate-millis: Duration in millis between chunk recalculations.
  13. # - database: Various database settings, MySQL and H2 are supported.
  14. # - enabled: Toggles whether specific worth types should be recalculated.
  15. # - perform-recalculate: Toggles chunk recalculation for the listed reasons.
  16. # - bypass-recalculate-delay: Toggles which reason bypasses the delay.
  17. # - spawner-prices: Value for specific spawners.
  18. # - block-prices: Value for specific blocks.
  19. #
  20. # Valid spawners (Case insensitive):
  21. # https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/entity/EntityType.html
  22. #
  23. # Valid materials (Case insensitive):
  24. # https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  25.  
  26. config-version: 3
  27. messages:
  28. count-format: '#,###'
  29. currency-format: $#,###.##
  30. button-back:
  31. enabled: '&b<'
  32. disabled: '&7<'
  33. tooltip:
  34. - "\xa7dCommand: \xa7b/f top {page:back}"
  35. button-next:
  36. enabled: '&b>'
  37. disabled: '&7>'
  38. tooltip:
  39. - "\xa7dCommand: \xa7b/f top {page:next}"
  40. header: '&8&m&l---------&8&l&m<&b&l Top Factions &8&l&m>&8&m&l---------'
  41. no-entries: '&bNo factions to be displayed.'
  42. body:
  43. text: '&3&l* &b{rank}. {relcolor}{faction} &b{worth:total}'
  44. tooltip:
  45. - '&b&lFaction: &f{faction}'
  46. - ''
  47. - '&3&l* &b&lTotal Worth: &7{worth:total}'
  48. - ''
  49. - '&3&l* &b&lTheir Items:'
  50. - '&bHopper: &fx{count:material:hopper}'
  51. - '&bGold Block: &fx{count:material:gold_block}'
  52. - '&bDiamond Block: &fx{count:material:diamond_block}'
  53. - '&bEmerald Block: &fx{count:material:emerald_block}'
  54. - '&bDragon Egg: &fx{count:material:dragon_egg}'
  55. - '&bChest: &fx{count:material:chest}'
  56. - '&bTrapped Chest: &fx{count:material:trapped_chest}'
  57. - ''
  58. - '&3&l* &b&lTheir Spawners:'
  59. - '&bCreeper: &fx{count:spawner:creeper}'
  60. - '&bSkeleton: &fx{count:spawner:skeleton}'
  61. - '&bZombie: &fx{count:spawner:zombie}'
  62. - '&bIron Golem: &fx{count:spawner:iron_golem}'
  63. - '&bSpider: &fx{count:spawner:spider}'
  64. - '&bBlaze: &fx{count:spawner:blaze}'
  65. - '&bCow: &fx{count:spawner:cow}'
  66. - '&bZombie Pigman: &fx{count:spawner:zombie_pigman}'
  67. - '&bCave Spider: &fx{count:spawner:cave_spider}'
  68. - ''
  69. - '&3&l* &b&lMiscellaneous'
  70. - '&bBlock Worth: &f{worth:block}'
  71. - '&bChest Worth: &f{worth:chest}'
  72. - '&bSpawner Worth: &f{worth:spawner}'
  73. - '&bPlayer Balances: &f{worth:player_balance}'
  74. footer: '&8&m&l--------<&b&l End of Page &e{page:this}/{page:last} &8&l&m>-------'
  75. permission: '&cYou do not have permission.'
  76. settings:
  77. command-aliases:
  78. - f top
  79. ignored-faction-ids:
  80. - none
  81. - safezone
  82. - warzone
  83. - '0'
  84. - '-1'
  85. - '-2'
  86. disable-chest-events: false
  87. factions-per-page: 9
  88. sign-update-ticks: 1
  89. liquid-update-ticks: 100
  90. chunk-queue-size: 200
  91. chunk-recalculate-millis: 120000
  92. database:
  93. jdbc-url: jdbc:h2:./plugins/FactionsTop/database
  94. username: root
  95. password: pa$$w0rd
  96. maximum-pool-size: 10
  97. max-lifetime: 5000
  98. idle-timeout: 5000
  99. connection-timeout: 5000
  100. enabled:
  101. chest: true
  102. player_balance: true
  103. faction_balance: false
  104. spawner: true
  105. block: true
  106. perform-recalculate:
  107. unload: true
  108. claim: true
  109. break: true
  110. place: true
  111. explode: true
  112. piston: true
  113. chest: true
  114. bypass-recalculate-delay:
  115. unload: true
  116. claim: true
  117. break: false
  118. place: false
  119. explode: false
  120. piston: false
  121. chest: false
  122. spawner-prices:
  123. skeleton: 30000.0
  124. zombie: 25000.0
  125. slime: 75000.0
  126. block-prices:
  127. gold_block: 250.0
  128. iron_block: 75.0
  129. diamond_block: 1000.0
  130. emerald_block: 1250.0
  131. coal_block: 25.0
  132. dragon_egg: 100000000.0
  133. chest: 20.0
  134. trapped_chest: 20.0
  135. hopper: 20000.0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement