Advertisement
Guest User

Untitled

a guest
Jul 7th, 2016
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.42 KB | None | 0 0
  1. # EZBlocks version 1.3.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. save_interval: 5
  31. enabled_worlds:
  32. - world
  33. - world_nether
  34. - all
  35. survival_mode_only: true
  36. pickaxe_never_breaks: false
  37. only_track_below_y:
  38. enabled: false
  39. coord: 50
  40. pickaxe_counter:
  41. enabled: true
  42. useDisplayName: false
  43. format: '&ePickaxe Level: &6%blocks%'
  44. global_rewards:
  45. default:
  46. blocks_needed: 1000
  47. reward_commands:
  48. - te add %player% 1
  49. - ezmsg &6&l(!) &eYou have received &61 &etoken for mining 1,000 blocks.
  50. interval_rewards:
  51. default:
  52. every: 7000
  53. reward_commands:
  54. - crate gk %player% Mining 1
  55. - ezmsg &6&l(!) &eYou have received &63 &etoken for mining.
  56. pickaxe_global_rewards:
  57. default:
  58. blocks_needed: 1000000
  59. reward_commands:
  60. - crate give %player% Fantasy 1
  61. - ezmsg &6&l(!) &eYou have received &6x1 &eFantasy key for your first 1,000,000 blocks mined.
  62. pickaxe_interval_rewards:
  63. default:
  64. every: 2000
  65. reward_commands:
  66. - te add %player% 3
  67. - ezmsg &6&l(!) &eYou have received &63 &etoken for mining.
  68. blocks_broken_command_enabled: true
  69. blocks_broken_message: '&6&l(!) &eYou have broken &6%blocksbroken%&e blocks!'
  70. material_blacklist:
  71. - DIRT
  72. - GRASS
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement