spigotdev

PickaxeUpgrades - config.yml

Jan 23rd, 2019
924
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.28 KB | None | 0 0
  1. # Welcome to the configuration of PickaxeUpgrades
  2. # Here you can edit the general settings of the plugin.
  3.  
  4. # Should the plugin check for updates?
  5.  
  6. update checker: true
  7.  
  8. item:
  9. # '%level%' - the item level
  10. # '%progressbar% - the progress bar (if it's enabled)
  11. # '%percentage%' - the progress percentage
  12. # '%current%' - the current xp amount the tool have
  13. # '%needed%' - the amount of xp needed to levelup
  14. lore:
  15. - '&7Blocks: &b%blocksbroken%'
  16. - '&7Level: &b%level% &7(&b%percentage%&7%)'
  17. - '&7XP: &b%current%&7/&b%needed%'
  18. - '&8[&f%progressbar%&8]'
  19. options:
  20. unbreakable: true
  21.  
  22. blocks:
  23. STONE: 1
  24.  
  25. # Should enchants be added before or after the level function? (Default: True - Before)
  26. Enchant Placement: True
  27.  
  28. # Here below, you add enchants, that the system will check for, when updating the lore of a item
  29.  
  30. enchants:
  31. - "&r&7FORTUNE"
  32. - EFFICIENCY
  33. - EXPLOSIVE
  34. - UNBREAKING
  35. - "&r&7LUCKY KEYS"
  36.  
  37. progress-bar:
  38. settings:
  39. amount of bars: 10
  40. symbol: "|"
  41. colors:
  42. completed: "&a"
  43. incompleted: "&c"
  44.  
  45. levels:
  46. settings:
  47. custom-costs: false
  48. max-level: 5 # (You will a additional cost for the max level)
  49. cost: 500
  50. costs:
  51. 1: 200
  52. 2: 300
  53. 3: 400
  54. 4: 500
  55. 5: 600
  56. 6: 700
  57. rewards:
  58. '1':
  59. commands:
  60. # '[console] command' - this command is being executed by the console
  61. # '[player] command' - this command is being executed by the player, it need the permission for the command otherwise it won't work
  62. # '[message] message' - send a message to the player
  63. # '%player%' - the player name
  64. - '[console] give %player% stone 1'
  65. - '[message] &7Your pickaxe is now level &a1&7, well done!'
  66. enchants:
  67. vanilla:
  68. LOOT_BONUS_BLOCKS: 10
  69. DIG_SPEED: 10
  70. DURABILITY: 1
  71. '2':
  72. commands:
  73. # '[console] command' - this command is being executed by the console
  74. # '[player] command' - this command is being executed by the player, it need the permission for the command otherwise it won't work
  75. # '[message] message' - send a message to the player
  76. # '%player%' - the player name
  77. - '[console] give %player% stone 2'
  78. - '[message] &7Your pickaxe is now level &a2&7, well done!'
Add Comment
Please, Sign In to add comment