Advertisement
Guest User

Untitled

a guest
Sep 24th, 2016
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.00 KB | None | 0 0
  1. # EZBlocks version 1.4.1 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: false
  45. useDisplayName: true
  46. format: '&8[&c%blocks%&8]'
  47. global_rewards:
  48. default:
  49. blocks_needed: 100
  50. reward_commands:
  51. - eco give %player% 10000
  52. - ezmsg &bCongrats on your first 100 blocks!
  53. interval_rewards:
  54. default:
  55. every: 100
  56. reward_commands:
  57. - eco give %player% 1000000
  58. - ezmsg You mined 100 blocks!
  59. blockkey:
  60. blocks_needed: 10000
  61. reward_commands:
  62. - crate key %player% block 1
  63. - ezmsg &bCongrats You received a Block Crate key for mining 10K blocks!
  64. pickaxe_global_rewards:
  65. default:
  66. blocks_needed: 100
  67. reward_commands:
  68. - eco give %player% 1000
  69. - ezmsg &bCongrats You mined 100 blocks with this pickaxe!
  70. blockkey:
  71. blocks_needed: 10000
  72. reward_commands:
  73. - crate key %player% block 1
  74. - ezmsg &bCongrats You received a Block Crate key for mining 10K blocks!
  75. pickaxe_interval_rewards:
  76. default:
  77. every: 100
  78. reward_commands:
  79. - eco give %player% 1000
  80. - ezmsg You mined 100 blocks!
  81. blockkey:
  82. blocks_needed: 10000
  83. reward_commands:
  84. - crate key %player% block 1
  85. - ezmsg &bCongrats You received a Block Crate key for mining 10K blocks!
  86. blocks_broken_command_enabled: true
  87. blocks_broken_message: '&bYou have broken &e%blocksbroken%&b blocks!'
  88. material_blacklist:
  89. - DIRT
  90. - GRASS
  91. blacklist_is_whitelist: false
  92. tracked_tools:
  93. - WOOD_PICKAXE
  94. - STONE_PICKAXE
  95. - IRON_PICKAXE
  96. - GOLD_PICKAXE
  97. - DIAMOND_PICKAXE
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement