Advertisement
Diamond_Cat

Untitled

Jan 23rd, 2019
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.06 KB | None | 0 0
  1. ##########################################################################################
  2. # ______ _ ____ __ __ __ #
  3. # / ____/ ______ ___ _____(_)__ ____ ________ / __ )____ / /_/ /_/ /__ #
  4. # / __/ | |/_/ __ \/ _ \/ ___/ / _ \/ __ \/ ___/ _ \ / __ / __ \/ __/ __/ / _ \ #
  5. # / /____> </ /_/ / __/ / / / __/ / / / /__/ __/ / /_/ / /_/ / /_/ /_/ / __/ #
  6. # /_____/_/|_/ .___/\___/_/ /_/\___/_/ /_/\___/\___/ /_____/\____/\__/\__/_/\___/ #
  7. # /_/ by Ryuji(Ryu) #
  8. ##########################################################################################
  9. settings:
  10. # This is the min amount a player may withdraw at a time.
  11. min-withdrawal-amount: 25
  12. # This is the max amount a player may withdraw at a time.
  13. max-withdrawal-amount: 100000
  14. # This would be the Signer of the banknote in the give or giveall command
  15. # if you don't provide a signer in the command
  16. default-signer: 'Console'
  17. # This would allow you to claim a stack of xpbottles all at once and it would
  18. # calculate all of them together for a grand total.
  19. claim-all: true
  20. # This would allow you to combine xpbottles together to make it all into one
  21. # like shown here: https://gyazo.com/0368d6e52e22fc96e2706f951bd85033
  22. xpbottle-combination: false
  23. # This is the sound effect when a player combines a xpbottle.
  24. # Note: Please use a valid sound effect for the version of minecraft.
  25. # Servers Running 1.9 & Above: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Sound.html
  26. # Servers Running 1.7 or 1.8: http://docs.codelanx.com/Bukkit/1.8/org/bukkit/Sound.html
  27. combination-sound:
  28. sound: 'ANVIL_USE'
  29. enable: false
  30. # This is the sound effect when a player withdraws a banknote.
  31. # Note: Please use a valid sound effect for the version of Minecraft.
  32. # Servers Running 1.9 & Above: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Sound.html
  33. # Servers Running 1.7 or 1.8: http://docs.codelanx.com/Bukkit/1.8/org/bukkit/Sound.html
  34. withdrawal-sound:
  35. sound: 'ORB_PICKUP'
  36. enable: false
  37. # This is the sound effect for when a player redeems a banknote.
  38. # Note: Please use a valid sound effect for the version of Minecraft.
  39. # Servers Running 1.9 & Above: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Sound.html
  40. # Servers Running 1.7 or 1.8: http://docs.codelanx.com/Bukkit/1.8/org/bukkit/Sound.html
  41. redeem-sound:
  42. sound: 'GLASS'
  43. enable: false
  44.  
  45. #-----------------------------------------------------------#
  46. # - enable: Allows you to enable or disable cool-downs. #
  47. # - default-time: is the default cool-down time given to #
  48. # users that don't have any of the permissions. #
  49. # - disable-teleportation: Allows you to enable or disable #
  50. # users from teleporting while in cool-down. #
  51. # - coolcown-task: Contains all your cool-downs with the #
  52. # permission and cool-down time for that permission. #
  53. # - time-format: Allows you to change the formatting of the #
  54. # time placeholders in the lang.yml. #
  55. # fixed-time = {fixed_time} #
  56. # formatted-time = {formatted_time} #
  57. #-----------------------------------------------------------#
  58. cooldown-settings:
  59. enable: false
  60. default-time: 1020
  61. disable-teleportation: false
  62. cooldown-task:
  63. default-rank:
  64. permission: 'xpbottle.use.cooldown.default'
  65. duration: 1020
  66. donator-rank:
  67. permission: 'xpbottle.use.cooldown.donator'
  68. duration: 780
  69. time-format:
  70. fixed-time:
  71. day: ' day(s)'
  72. hour: ' hour(s)'
  73. minute: ' minute(s)'
  74. second: ' second(s)'
  75. formatted-time:
  76. day: 'd'
  77. hour: 'h'
  78. minute: 'm'
  79. second: 's'
  80.  
  81. #-----------------------------------------------------------#
  82. # - enable: Allows you to enable or disable death penalty. #
  83. # - no-exp-drop-perm: Is the permission given to a user #
  84. # that wouldn't lose/drop their experience. #
  85. # - use-custom-item: Uses the item [xpbottle-on-death-item] #
  86. # for when a user gets killed. #
  87. # - enable-drop-percentage: Allows you to enable or #
  88. # disable whether or not a users full experience will drop.#
  89. # - drop-percentage: Is the set percentage of experience of #
  90. # the users experience will drop. #
  91. # - random-drop-percentage: Allows you to enable or disable #
  92. # weather or not to use the drop-percentage or generate a #
  93. # random percentage. #
  94. # - min-max-random-percentage: Allows you to choose the min #
  95. # & max for the random percentage that will be generated. #
  96. #-----------------------------------------------------------#
  97. xpbottle-on-death-settings:
  98. enable: false
  99. no-exp-drop-perm: 'xpbottle.keepexp'
  100. use-custom-item: true
  101. enable-drop-percentage: false
  102. drop-percentage: 100
  103. random-drop-percentage: false
  104. min-max-random-percentage: false
  105. minimum-percentage: 20
  106. maximum-percentage: 90
  107.  
  108. #------------------------------------------------#
  109. # - id: This is the id of the banknote item. #
  110. # - name: This is the name of the banknote item. #
  111. # - lore: This is the lore of the banknote item. #
  112. # - glowing: This is a true or false statement #
  113. # if true the item will be enchanted. #
  114. # - amount-lore: This is where the {amount} is #
  115. # located. #
  116. #------------------------------------------------#
  117. xpbottle-item:
  118. id: 384
  119. data: 0
  120. name: '&a&lExperience Bottle &7(Throw)'
  121. lore:
  122. - '&dValue &f{amount} XP'
  123. - '&dEnchanter &f{signer}'
  124. glowing: false
  125. amount-lore: 1
  126. xpbottle-on-death-item:
  127. id: 384
  128. data: 0
  129. name: '&a&lExp Bottle &7(Throw)'
  130. lore:
  131. - '&dValue &f{amount} XP'
  132. - '&dEnchanter &f{player}'
  133. - ' '
  134. - '&7&o{killer} &7has killed&o {player}'
  135. - '&7to obtain this exp bottle!'
  136. glowing: false
  137. amount-lore: 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement