Advertisement
Guest User

config

a guest
Aug 21st, 2016
578
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.81 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. - '&dCommand: &b/f top {page:back}'
  35. button-next:
  36. enabled: '&b[>]'
  37. disabled: '&7[>]'
  38. tooltip:
  39. - '&dCommand: &b/f top {page:next}'
  40. header: '&6_______.[ &2Top Factions {button:back} &6{page:this}/{page:last} {button:next}
  41. &6]._______'
  42. no-entries: '&eNo entries to be displayed.'
  43. body:
  44. text: '&e{rank}. {relcolor}{faction} &b{worth:total}'
  45. tooltip:
  46. - '&e&l-- General --'
  47. - '&dTotal Worth: &b{worth:total}'
  48. - '&dBlock Worth: &b{worth:block}'
  49. - '&dChest Worth: &b{worth:chest}'
  50. - '&dSpawner Worth: &b{worth:spawner}'
  51. - '&dPlayer Balances: &b{worth:player_balance}'
  52. - '&dFaction Bank: &b{worth:faction_balance}'
  53. - ''
  54. - '&e&l-- Spawners --'
  55. - '&dSlime: &b{count:spawner:slime}'
  56. - '&dSkeleton: &b{count:spawner:skeleton}'
  57. - '&dZombie: &b{count:spawner:zombie}'
  58. - '&dIronGolem: &b{count:spawner:iron_golem}'
  59. - '&dBlaze: &b{count:spawner:blaze}'
  60. - '&dCreeper: &b{count:spawner:creeper}'
  61.  
  62. - ''
  63. - '&e&l-- Blocks --'
  64. - '&dObsidian: &b{count:material:Obsidian}'
  65. footer: ''
  66. permission: '&cYou do not have permission.'
  67. settings:
  68. command-aliases:
  69. - f top
  70. ignored-faction-ids:
  71. - none
  72. - safezone
  73. - warzone
  74. - '0'
  75. - '-1'
  76. - '-2'
  77. disable-chest-events: false
  78. factions-per-page: 9
  79. sign-update-ticks: 1
  80. liquid-update-ticks: 100
  81. chunk-queue-size: 200
  82. chunk-recalculate-millis: 120000
  83. database:
  84. jdbc-url: jdbc:h2:./plugins/FactionsTop/database
  85. username: root
  86. password: pa$$w0rd
  87. maximum-pool-size: 10
  88. max-lifetime: 5000
  89. idle-timeout: 5000
  90. connection-timeout: 5000
  91. enabled:
  92. chest: true
  93. player_balance: true
  94. faction_balance: true
  95. spawner: true
  96. block: true
  97. perform-recalculate:
  98. unload: true
  99. claim: true
  100. break: true
  101. place: true
  102. explode: true
  103. piston: true
  104. chest: true
  105. bypass-recalculate-delay:
  106. unload: true
  107. claim: true
  108. break: false
  109. place: false
  110. explode: false
  111. piston: false
  112. chest: false
  113. spawner-prices:
  114. skeleton: 35000.0
  115. zombie: 30000.0
  116. slime: 75000.0
  117. iron_golem: 250000.0
  118. creeper: 75000.0
  119. blaze: 150000.0
  120. cow: 35000.0
  121. pig: 25000.0
  122. chicken: 15000.0
  123. zombiepigman: 100000.0
  124. sheep: 15000.0
  125. spider: 35000.0
  126. block-prices:
  127. OBSIDIAN: 130.0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement