Advertisement
Guest User

Config.yml

a guest
Oct 31st, 2018
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.47 KB | None | 0 0
  1. #Player level plugin!
  2. #Author -> Arkasher
  3. #Do not distribute!
  4.  
  5. #Do you want use MySQL? Change to true if so.
  6. Use_MySQL: false
  7.  
  8. #MySQL configuration (if Use_MySQL is activated).
  9. MySQL:
  10. User: root
  11. Password: ""
  12. Database: 'database'
  13. Table: "player_levels"
  14. IP: "127.0.0.1"
  15.  
  16. Give_EXP_In_Creative_Mode: true
  17.  
  18. #The level that the players will starts
  19. Start_Level: 1
  20.  
  21. #Here you can select the worlds that the player will receive exp by break blocks, kill mobs or kill players.
  22. #If the player can gain exp in all worlds, put "- all"
  23. Worlds:
  24. - "all"
  25. - "world"
  26.  
  27. Use_Vault_For_Chat: true
  28.  
  29. #If you put to 'false', the skull of the inventory from /level, will stay with the Steve Skin.
  30. Use_HeadSkin: true
  31.  
  32. #Will add a prefix with the player level (if the option Use_Vault_For_Chat is equals true)
  33. #The '@prefix' its used to get the other player prefixes. Thats allow you to put the level prefix before or after the other
  34. Level_Chat_Prefix: " &b[&6Level @lvl&b] @prefix"
  35.  
  36. Level_Inventory_Name: "&7PlayerLevels"
  37.  
  38. Inventory_Stack_Level: "&aLevel: &f@level"
  39. Inventory_Stack_EXP: "&aEXP: &f@exp"
  40.  
  41. #The cooldown to the level top update
  42. #The time is in minutes
  43. #Recommended: 10 minutes or more
  44. Level_Top_Update: 10
  45.  
  46. Use_Minecraft_Level_System: false
  47.  
  48. Has_Max_Level: false
  49.  
  50. Max_Level: 1000
  51.  
  52. #Put here the groups that will have the multiplier
  53. #The number is the amount to be multiplied by the experience gained
  54. #Need Vault and a Permission plugin.
  55. #Write the groups in lower case.
  56. Group_EXP_Multiplier:
  57. vip: 1
  58. owner: 1
  59.  
  60. #Here you choose the level up type.
  61. #Types: normal, config
  62. #The 'normal' method, you CAN'T edit the necessary EXP to up, you can just edit the difficulty of level up.
  63. #The 'config' method, you CAN edit the necessary EXP to up, in the levels.yml file.
  64. Levels_Type: "config"
  65.  
  66. #Compare if the xp of the player is higher than the level of the player multiplied by the Level_Difficulty (this option can be used only if Levels_Type is equals normal or if Levels_Type is equals config and
  67. #hasn't more Levels in the levels.yml)
  68. Level_Difficulty: 5
  69.  
  70. Reset_XP_On_Level_UP: false
  71.  
  72. Receive_EXP_On_Kill_Players: false
  73.  
  74. EXP_On_Kill_Players: 10
  75.  
  76. Receive_EXP_On_Kill_Mobs: true
  77.  
  78. #You can add new mobs.
  79. #You can see the mobs names here: https://minecraft-ids.grahamedgecombe.com/entities
  80. #For edited mobs, you can put the option "Name" to give more exp.
  81. #E.g: If you wanna give more exp for a edited mob from MythicMobs, you just put the mob name with the "Name" option, that will give more exp.
  82. Mobs:
  83. BLAZE:
  84. Mob: "BLAZE"
  85. EXP: 6
  86. HUSK:
  87. Mob: "HUSK"
  88. EXP: 3
  89. SKELETON:
  90. Mob: "SKELETON"
  91. EXP: 5
  92. MMOB_1:
  93. Mob: "SKELETON"
  94. Name: "&2Skeletal Minion"
  95. EXP: 15
  96.  
  97. Lost_EXP_While_Dying: false
  98.  
  99. Lost_EXP_While_Dying_Quantity: 3
  100.  
  101. #If true, you can select the block that the player will receive EXP.
  102. Block_Break_EXP_Receive: false
  103.  
  104. #You can add new blocks.
  105. #You can see the block names here: http://minecraft-ids.grahamedgecombe.com/
  106. #If the block shouldn't be breaked just by a specific item, put '- ALL' in the Item_Break list or remove the 'Item_Break' option.
  107. #Put the list of items in the Item_Break in upper case.
  108. Blocks:
  109. EMERALD_ORE:
  110. Block: "EMERALD_ORE"
  111. EXP: 6
  112. Item_Break:
  113. - DIAMOND_PICKAXE
  114. REDSTONE_ORE:
  115. Block: "REDSTONE_ORE"
  116. EXP: 4
  117. Item_Break:
  118. - IRON_PICKAXE
  119. - DIAMOND_PICKAXE
  120. DIAMOND_ORE:
  121. Block: "DIAMOND_ORE"
  122. EXP: 5
  123.  
  124. #You can edit the levels, and you can:
  125. #Execute commands, give items and messages.
  126. #This is predefined levels, you can remove, add, or edit anything.
  127. #To don't execute commands, or give items, or send messages, just remove.
  128. #To add commands, items or messages, you need follow this pattern:
  129. # - "<your-action>"
  130. #E.g:
  131. #Items:
  132. # - 'ITEM : QUANTITY : ENCHANT:LEVEL'
  133. # - 'ITEM : QUANTITY : ENCHANT:LEVEL,ENCHANT:LEVEL'
  134. # - 'ITEM : QUANTITY : ENCHANT:LEVEL,ENCHANT:LEVEL,ENCHANT:LEVEL'
  135. # - 'ITEM : QUANTITY : ENCHANT:LEVEL,ENCHANT:LEVEL,ENCHANT:LEVEL,ENCHANT:LEVEL'
  136. Levels:
  137. 10:
  138. Command:
  139. - "say @player reached the level @level!"
  140. - "money give @player 10000"
  141. Items:
  142. - 'DIAMOND_SWORD : 1 : KNOCKBACK:2'
  143. - "GOLDEN_APPLE-1 : 5"
  144. Message:
  145. - "&6Congratulations &f@player&6, you reached the level 10."
  146. - "&aThe next reward is in the level 15."
  147. 15:
  148. Command:
  149. - "say @player reached the level 15!"
  150. - "money give @player 20000"
  151. Items:
  152. - 'DIAMOND_SWORD : 1 : KNOCKBACK:2'
  153. - 'BOW : 1 : INFINITY:1,POWER:4,FIRE:1'
  154. - "GOLDEN_APPLE-1 : 10"
  155. Message:
  156. - "&6Congratulations &f@player&6, you reached the level 15."
  157.  
  158.  
  159. #If true, the player will receive an action bar message on receive exp.
  160. #This option is for 1.8 servers!
  161. ActionBar_Message: false
  162.  
  163. Messages:
  164. Help_Topic:
  165. Admin:
  166. - " "
  167. - "&c-=-=-=-=-=-=-=-=-=-= &aPlayer Levels &c-=-=-=-=-=-=-=-=-=-="
  168. - "&f&l* &b/level"
  169. - "&f&l* &b/level top"
  170. - "&f&l* &b/level help"
  171. - "&f&l* &b/level <player>"
  172. - "&f&l* &b/level <give>/<set>/<take> <player> <amount>"
  173. - "&f&l* &b/level <giveexp> <player> <amount>"
  174. - "&f&l* &b/level <setexp> <player> <amount>"
  175. - "&f&l* &b/level <take> <player> <amount>"
  176. - "&f&l* &b/level clear <player>"
  177. - "&e- &ahelp: &cSee the help page."
  178. - "&e- &atop: &cSee the best levels in the server"
  179. - "&e- &aplayer: &cSee the level of a certain player."
  180. - "&e- &agive: &cGive level for a certain player."
  181. - "&e- &agiveexp: &cGive exp for a certain player."
  182. - "&e- &atakeexp: &cTake exp for a certain player."
  183. - "&e- &asetexp: &cSet the exp of a certain player."
  184. - "&e- &aset: &cSet the level of a certain player."
  185. - "&e- &aamount: &cAmount of your action."
  186. - "&e- &atake: &cTake level from a certain player."
  187. - "&e- &aclear: &cSet the player level to starts level and 0 exp."
  188. - "&c-=-=-=-=-=-=-=-=-=-= &aPlayer Levels &c-=-=-=-=-=-=-=-=-=-="
  189. - " "
  190. Player:
  191. - " "
  192. - "&c-=-=-=-=-=-=-=-=-=-= &aPlayer Levels &c-=-=-=-=-=-=-=-=-=-="
  193. - "&f&l* &b/level"
  194. - "&f&l* &b/level top"
  195. - "&f&l* &b/level help"
  196. - "&f&l* &b/level <player>"
  197. - "&e- &ahelp: &cSee the help page."
  198. - "&e- &atop: &cSee the best levels in the server"
  199. - "&e- &aplayer: &cSee the level of a certain player."
  200. - "&c-=-=-=-=-=-=-=-=-=-= &aPlayer Levels &c-=-=-=-=-=-=-=-=-=-="
  201. - " "
  202. Player_Clear: "&cYou cleared the player &f@player&c."
  203. Max_Level: "&cYou reached the max level."
  204. Much_EXP: "&cYou are receiving much experience, we will warn you when the process ends."
  205. Process_Finished: "&aProcess finished. Your new level is: &f@level"
  206. Needs_Exp: "&aNeed &f@exp &aexp to the next level"
  207. Your_Level: "&a[Player Levels] &fYour level is: &b@level"
  208. Your_EXP: "&a[Player Levels] &fYour experience is: &b@exp"
  209. Other_Level: "&a[Player Levels] &b@player &fhas &b@level &flevels!"
  210. Other_EXP: "&a[Player Levels] &b@player &fhas &b@exp &fof experience."
  211. Level_UP: "&a[Player Levels] &aLevel up! New level: &f@newlevel"
  212. Correct_Usage: "&a[Player Levels] &cUse: /level"
  213. Player_Not_Found: "&a[Player Levels] &cPlayer &f@player &cnot found."
  214. Only_Numbers: "&a[Player Levels] &cUse only numbers."
  215. No_Permission: "&a[Player Levels] &cYou don't have permission."
  216. Level_Give: "&a[Player Levels] &aYou give &f@levels &alevels to the player &f@player&a."
  217. Level_Remove: "&a[Player Levels] &cYou taked &f@levels &clevels from the player &f@player&a."
  218. Level_Set: "&a[Player Levels] &cYou setted &f@levels &clevels to the player &f@player&a."
  219. Exp_Give: "&a[Player Levels] &aYou gived &f@exp &aof experience to the player &f@player&a."
  220. Exp_Set: "&a[Player Levels] &aYou setted &f@exp &aof experience to the player &f@player&a."
  221. Exp_Take: "&a[Player Levels] &aYou removed &f@exp &aof experience to the player &f@player&a."
  222. Received_EXP: "&a[Player Levels] &aYou received &f@exp &aEXP."
  223. Lost_EXP: "&a[Player Levels] &cYou lost &f@exp &cEXP."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement