Advertisement
FatherWh0

factionstop config.yml

Jul 28th, 2016
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.46 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: 2
  27. settings:
  28. command-aliases:
  29. - f top
  30. ignored-faction-ids:
  31. - none
  32. - safezone
  33. - warzone
  34. - '0'
  35. - '-1'
  36. - '-2'
  37. disable-chest-events: false
  38. factions-per-page: 9
  39. sign-update-ticks: 1
  40. liquid-update-ticks: 100
  41. chunk-queue-size: 200
  42. chunk-recalculate-millis: 120000
  43. database:
  44. jdbc-url: jdbc:h2:./plugins/FactionsTop/database
  45. username: root
  46. password: pa$$w0rd
  47. maximum-pool-size: 10
  48. max-lifetime: 5000
  49. idle-timeout: 5000
  50. connection-timeout: 5000
  51. enabled:
  52. chest: true
  53. player_balance: true
  54. faction_balance: true
  55. spawner: true
  56. block: true
  57. perform-recalculate:
  58. unload: true
  59. claim: true
  60. break: true
  61. place: true
  62. explode: true
  63. piston: true
  64. chest: true
  65. bypass-recalculate-delay:
  66. unload: true
  67. claim: true
  68. break: false
  69. place: false
  70. explode: false
  71. piston: false
  72. chest: false
  73. spawner-prices:
  74. skeleton: 30000.0
  75. zombie: 25000.0
  76. slime: 75000.0
  77. block-prices:
  78. gold_block: 250.0
  79. iron_block: 75.0
  80. diamond_block: 1000.0
  81. emerald_block: 1250.0
  82. coal_block: 25.0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement