Advertisement
Guest User

Untitled

a guest
May 20th, 2018
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.59 KB | None | 0 0
  1. # EZBlocks version 1.5.0 Main configuration file.
  2. # database: true/false
  3. # If you choose to use MySQL, set this to true and
  4. # enter your MySQL credentials
  5. # save_interval: how often (in minutes) should EZBlocks save to file/MySQL
  6. # enabled_worlds: what worlds should EZBlocks be enabled in, use 'all' for all worlds
  7. # pickaxe_never_breaks: should EZBlocks prevent pickaxes from breaking
  8. # only_track_below_y: should we only track blockbreaks below a certain y coordinate
  9. # pickaxe_counter:
  10. # This section lets you choose how to display the pickaxe specific blockbreak counter
  11. # If useDisplayName: true, Do not add Blocks broken: to the format
  12. # the format specified will be added on any pickaxe with a displayname present
  13. # if useDisplayName: false, the format will be added in the lore of the pickaxe
  14. #
  15. # global_rewards:
  16. # this is where you can give rewards when players reach x amount of global blockbreaks
  17. # this does not reward depending on the pickaxe counter, only global blockbreaks
  18. #
  19. # interval_rewards:
  20. # this is where you can give rewards every x blocks mined
  21. # this does not reward depending on the pickaxe counter, only global blockbreaks
  22. database:
  23. enabled: false
  24. hostname: localhost
  25. port: 3306
  26. database: ezblocks
  27. prefix: ''
  28. username: root
  29. password: ''
  30. integration:
  31. tokenenchant_blockexplodeevent: true
  32. save_interval: 5
  33. blockbreakevent_priority: HIGHEST
  34. enabled_worlds:
  35. - world
  36. - world_nether
  37. - all
  38. survival_mode_only: true
  39. pickaxe_never_breaks: false
  40. only_track_below_y:
  41. enabled: false
  42. coord: 50
  43. pickaxe_counter:
  44. enabled: true
  45. useDisplayName: false
  46. format: '&8[&aBlocks&8]'
  47. command_options:
  48. add:
  49. give_rewards_on_add: true
  50. global_rewards:
  51. default:
  52. blocks_needed: 1000000000000
  53. reward_commands:
  54. - eco give %player% 100
  55. - ezmsg &bCongrats on your first 100 blocks!
  56. interval_rewards:
  57. default:
  58. every: 10000000000000
  59. reward_commands:
  60. - eco give %player% 1
  61. - ezmsg You mined 100 blocks!
  62. pickaxe_global_rewards:
  63. default:
  64. blocks_needed: 1000000000000000000000
  65. reward_commands:
  66. - eco give %player% 1
  67. - ezmsg &bCongrats You mined 100 blocks with this pickaxe!
  68. pickaxe_interval_rewards:
  69. default:
  70. every: 10000000000000000000
  71. reward_commands:
  72. - eco give %player% 1
  73. - ezmsg You mined 100 blocks!
  74. blocks_broken_command_enabled: true
  75. blocks_broken_message: '&bYou have broken &e%blocksbroken%&b blocks!'
  76. material_blacklist:
  77. - DIRT
  78. - GRASS
  79. blacklist_is_whitelist: false
  80. tracked_tools:
  81. - WOOD_PICKAXE
  82. - STONE_PICKAXE
  83. - IRON_PICKAXE
  84. - GOLD_PICKAXE
  85. - DIAMOND_PICKAXE
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement