Advertisement
Guest User

Untitled

a guest
Dec 5th, 2018
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 34.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: false
  17.  
  18. #The level that the players will starts
  19. Start_Level: 1
  20.  
  21. #The configuration of /level booster gi command.
  22. #ID = BLOCK_NAME (IN UPPER CASE)
  23. #Name = NAME OF THE ITEM (if your server version are biggest than 1.11 add LEGACY_ before the MATERIAL name.)
  24. #E.g: LEGACY_EXP_BOTTLE (1.11 or higher)
  25. #E.g: EXP_BOTTLE (1.8, 1.9 or 1.10)
  26. #Lore = Description of the item.
  27. Booster_Item:
  28. ID: "DIAMOND_BLOCK"
  29. Name: "&aBooster &e@amountx"
  30. Lore:
  31. - "&7Booster &e@amountx &7for &e@time"
  32. - "&7Right click to use"
  33.  
  34. #Here you can select the worlds that the player will receive exp by break blocks, kill mobs or kill players.
  35. #If the player can gain exp in all worlds, put "- all"
  36. Worlds:
  37. - "all"
  38. - "world"
  39.  
  40. Use_Vault_For_Chat: false
  41.  
  42. #Put to false if you have vault on your server and you doesn't use the Use_Vault_For_Chat option.
  43. Hook_With_Vault: false
  44.  
  45. #If you put to 'false', the skull of the inventory from /level, will stay with the Steve Skin.
  46. Use_HeadSkin: true
  47.  
  48. #Will add a prefix with the player level (if the option Use_Vault_For_Chat is equals true)
  49. #The '@prefix' its used to get the other player prefixes. Thats allow you to put the level prefix before or after the other
  50. Level_Chat_Prefix: "@prefix &7[Lv. @lvl]"
  51.  
  52. Level_Inventory_Name: "&b&lAtheran Levels"
  53.  
  54. Inventory_Stack_Level: "&b&lLevel:&r &f@level"
  55. Inventory_Stack_EXP: "&b&lEXP:&r &f@exp"
  56.  
  57. #The cooldown to the level top update
  58. #The time is in minutes
  59. #Recommended: 10 minutes or more
  60. Level_Top_Update: 10
  61.  
  62. Use_Minecraft_Level_System: false
  63.  
  64. Has_Max_Level: false
  65.  
  66. Max_Level: 1000
  67.  
  68. #Put here the groups that will have the multiplier
  69. #The number is the amount to be multiplied by the experience gained
  70. #Need Vault and a Permission plugin.
  71. #Write the groups in lower case.
  72. Group_EXP_Multiplier:
  73. owner: 1
  74. coowner: 1
  75. headadmin: 1
  76. admin: 1
  77. srmod: 1
  78. mod: 1
  79. builder: 1
  80. helper: 1
  81. youtube: 1
  82. demon: 1
  83. phoenix: 1
  84. siren: 1
  85. griffin: 1
  86. default: 1
  87.  
  88. #Here you choose the level up type.
  89. #Types: normal, config
  90. #The 'normal' method, you CAN'T edit the necessary EXP to up, you can just edit the difficulty of level up.
  91. #The 'config' method, you CAN edit the necessary EXP to up, in the levels.yml file.
  92. Levels_Type: "config"
  93.  
  94. #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
  95. #hasn't more Levels in the levels.yml)
  96. Level_Difficulty: 5
  97.  
  98. Acumulative_XP_On_Level_UP: false
  99.  
  100. Receive_EXP_On_Kill_Players: true
  101.  
  102. EXP_On_Kill_Players: 10
  103.  
  104. Receive_EXP_On_Kill_Mobs: true
  105.  
  106. #You can add new mobs.
  107. #You can see the mobs names here: https://minecraft-ids.grahamedgecombe.com/entities
  108. #For edited mobs, you can put the option "Name" to give more exp.
  109. #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.
  110. Mobs:
  111. ZOMBIE:
  112. Mob: "ZOMBIE"
  113. EXP: 5
  114. SKELETON:
  115. Mob: "SKELETON"
  116. EXP: 5
  117. SPIDER:
  118. Mob: "SPIDER"
  119. EXP: 5
  120. CREEPER:
  121. Mob: "CREEPER"
  122. EXP: 5
  123. CAVE_SPIDER:
  124. Mob: "CAVE_SPIDER"
  125. EXP: 5
  126. ENDERMAN:
  127. Mob: "ENDERMAN"
  128. EXP: 5
  129. ZOMBIE_PIGMAN:
  130. Mob: "ZOMBIE_PIGMAN"
  131. EXP: 5
  132. GHAST:
  133. Mob: "GHAST"
  134. EXP: 5
  135. SILVERFISH:
  136. Mob: "SILVERFISH"
  137. EXP: 5
  138. WITCH:
  139. Mob: "WITCH"
  140. EXP: 5
  141. MAGMA_CUBE:
  142. Mob: "MAGMA_CUBE"
  143. EXP: 5
  144. ENDERMITE:
  145. Mob: "ENDERMITE"
  146. EXP: 5
  147. GUARDIAN:
  148. Mob: "GUARDIAN"
  149. EXP: 5
  150. VEX:
  151. Mob: "VEX"
  152. EXP: 5
  153. EVOCATION_ILLAGER:
  154. Mob: "EVOCATION_ILLAGER"
  155. EXP: 5
  156. VIDICATION_ILLAGER:
  157. Mob: "VIDICATION_ILLAGER"
  158. EXP: 5
  159. ILLUSION_ILLAGER:
  160. Mob: "ILLUSION_ILLAGER"
  161. EXP: 5
  162. ZOMBIE_VILLAGER:
  163. Mob: "ZOMBIE_VILLAGER"
  164. EXP: 5
  165. SHULKER:
  166. Mob: "SHULKER"
  167. EXP: 5
  168. HUSK:
  169. Mob: "HUSK"
  170. EXP: 5
  171. SKELETON:
  172. Mob: "STRAY"
  173. EXP: 5
  174. SLIME:
  175. Mob: "SLIME"
  176. EXP: 5
  177. DROWNED:
  178. Mob: "DROWNED"
  179. EXP: 5
  180. WITHER_SKELETON:
  181. Mob: "WITHER_SKELETON"
  182. EXP: 5
  183. BLAZE:
  184. Mob: "BLAZE"
  185. EXP: 5
  186. WITHER:
  187. Mob: "WITHER"
  188. EXP: 15
  189. ELDER_GUARDIAN:
  190. Mob: "ELDER_GUARDIAN"
  191. EXP: 10
  192. ENDER_DRAGON:
  193. Mob: "ENDER_DRAGON"
  194. EXP: 25
  195.  
  196. Lost_EXP_While_Dying: false
  197.  
  198. Lost_EXP_While_Dying_Quantity: 3
  199.  
  200. #If true, you can select the block that the player will receive EXP.
  201. Block_Break_EXP_Receive: true
  202.  
  203. #You can add new blocks.
  204. #You can see the block names here: http://minecraft-ids.grahamedgecombe.com/
  205. #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.
  206. #Put the list of items in the Item_Break in upper case.
  207. Blocks:
  208. EMERALD_ORE:
  209. Block: "EMERALD_ORE"
  210. EXP: 10
  211. DIAMOND_ORE:
  212. Block: "DIAMOND_ORE"
  213. EXP: 5
  214. GOLD_ORE:
  215. Block: "GOLD_ORE"
  216. EXP: 3
  217. LAPIS_ORE:
  218. Block: "LAPIS_ORE"
  219. EXP: 2
  220. IRON_ORE:
  221. Block: "IRON_ORE"
  222. EXP: 1
  223. COAL_ORE:
  224. Block: "COAL_ORE"
  225. EXP: 1
  226.  
  227. #You can edit the levels, and you can:
  228. #Execute commands, give items and messages.
  229. #This is predefined levels, you can remove, add, or edit anything.
  230. #To don't execute commands, or give items, or send messages, just remove.
  231. #To add commands, items or messages, you need follow this pattern:
  232. # - "<your-action>"
  233. #E.g:
  234. #Items:
  235. # - 'ITEM : QUANTITY : ENCHANT:LEVEL'
  236. # - 'ITEM : QUANTITY : ENCHANT:LEVEL,ENCHANT:LEVEL'
  237. # - 'ITEM : QUANTITY : ENCHANT:LEVEL,ENCHANT:LEVEL,ENCHANT:LEVEL'
  238. # - 'ITEM : QUANTITY : ENCHANT:LEVEL,ENCHANT:LEVEL,ENCHANT:LEVEL,ENCHANT:LEVEL'
  239. Levels:
  240. 5:
  241. Command:
  242. - "broadcast &b&l@player &fhas reached &blevel 5!"
  243. - "eco give @player 5000"
  244. - "cr give to @player SpellForged 1"
  245. Message:
  246. - "&bCongratulations &f@player&f, you reached the level 5."
  247. - "&aThe next reward is in the level 6."
  248. 6:
  249. Command:
  250. - "cr give to @player SpellForged 1"
  251. Message:
  252. - "&bCongratulations &f@player&f, you reached the level 6."
  253. - "&aThe next reward is in the level 7."
  254. 7:
  255. Command:
  256. - "cr give to @player SpellForged 1"
  257. Message:
  258. - "&bCongratulations &f@player&f, you reached the level 7."
  259. - "&aThe next reward is in the level 8."
  260. 8:
  261. Command:
  262. - "cr give to @player SpellForged 1"
  263. Message:
  264. - "&bCongratulations &f@player&f, you reached the level 8."
  265. - "&aThe next reward is in the level 9."
  266. 9:
  267. Command:
  268. - "cr give to @player SpellForged 1"
  269. Message:
  270. - "&bCongratulations &f@player&f, you reached the level 9."
  271. - "&aThe next reward is in the level 10."
  272. 10:
  273. Command:
  274. - "broadcast &b&l@player &fhas reached &blevel 10!"
  275. - "eco give @player 10000"
  276. - "cr give to @player Crimson 1"
  277. - "lp user @player permission set Pet.type.chicken"
  278. - "lp user @player permission set deluxetags.tag.level10"
  279. Message:
  280. - "&bCongratulations &f@player&f, you reached the level 10."
  281. - "&bYou have unlocked &fChicken Pet &band &fLvl10 Tag."
  282. - "&aThe next reward is in the level 11."
  283. 11:
  284. Command:
  285. - "cr give to @player SpellForged 1"
  286. Message:
  287. - "&bCongratulations &f@player&f, you reached the level 11."
  288. - "&aThe next reward is in the level 12."
  289. 12:
  290. Command:
  291. - "cr give to @player SpellForged 1"
  292. Message:
  293. - "&bCongratulations &f@player&f, you reached the level 12."
  294. - "&aThe next reward is in the level 13."
  295. 13:
  296. Command:
  297. - "cr give to @player SpellForged 1"
  298. Message:
  299. - "&bCongratulations &f@player&f, you reached the level 13."
  300. - "&aThe next reward is in the level 14."
  301. 14:
  302. Command:
  303. - "cr give to @player SpellForged 1"
  304. Message:
  305. - "&bCongratulations &f@player&f, you reached the level 14."
  306. - "&aThe next reward is in the level 15."
  307. 15:
  308. Command:
  309. - "broadcast &b&l@player &fhas reached &blevel 15!"
  310. - "eco give @player 25000"
  311. - "cr give to @player Crimson 1"
  312. Message:
  313. - "&bCongratulations &f@player&f, you reached the level 15."
  314. - "&aThe next reward is in the level 16."
  315. 16:
  316. Command:
  317. - "cr give to @player SpellForged 1"
  318. Message:
  319. - "&bCongratulations &f@player&f, you reached the level 16."
  320. - "&aThe next reward is in the level 17."
  321. 17:
  322. Command:
  323. - "cr give to @player SpellForged 1"
  324. Message:
  325. - "&bCongratulations &f@player&f, you reached the level 17."
  326. - "&aThe next reward is in the level 18."
  327. 18:
  328. Command:
  329. - "cr give to @player SpellForged 1"
  330. Message:
  331. - "&bCongratulations &f@player&f, you reached the level 18."
  332. - "&aThe next reward is in the level 19."
  333. 19:
  334. Command:
  335. - "cr give to @player SpellForged 1"
  336. Message:
  337. - "&bCongratulations &f@player&f, you reached the level 19."
  338. - "&aThe next reward is in the level 20."
  339. 20:
  340. Command:
  341. - "broadcast &b&l@player &fhas reached &blevel 20!"
  342. - "eco give @player 25000"
  343. - "cr give to @player Forsaken 1"
  344. - "lp user @player permission set iDisguise.mob.chicken"
  345. - "lp user @player permission set deluxetags.tag.level20"
  346. Message:
  347. - "&bCongratulations &f@player&f, you reached the level 20."
  348. - "&bYou have unlocked &fChicken Disguise &band &fLvl20 Tag."
  349. - "&aThe next reward is in the level 21."
  350. 21:
  351. Command:
  352. - "cr give to @player SpellForged 1"
  353. Message:
  354. - "&bCongratulations &f@player&f, you reached the level 21."
  355. - "&aThe next reward is in the level 22."
  356. 22:
  357. Command:
  358. - "cr give to @player SpellForged 1"
  359. Message:
  360. - "&bCongratulations &f@player&f, you reached the level 22."
  361. - "&aThe next reward is in the level 23."
  362. 23:
  363. Command:
  364. - "cr give to @player SpellForged 1"
  365. Message:
  366. - "&bCongratulations &f@player&f, you reached the level 23."
  367. - "&aThe next reward is in the level 24."
  368. 24:
  369. Command:
  370. - "cr give to @player SpellForged 1"
  371. Message:
  372. - "&bCongratulations &f@player&f, you reached the level 24."
  373. - "&aThe next reward is in the level 25."
  374. 25:
  375. Command:
  376. - "broadcast &b&l@player &fhas reached &blevel 25!"
  377. - "eco give @player 50000"
  378. - "cr give to @player Mystical 1"
  379. Message:
  380. - "&bCongratulations &f@player&f, you reached the level 25."
  381. - "&aThe next reward is in the level 26."
  382. 26:
  383. Command:
  384. - "cr give to @player Crimson 1"
  385. Message:
  386. - "&bCongratulations &f@player&f, you reached the level 26."
  387. - "&aThe next reward is in the level 27."
  388. 27:
  389. Command:
  390. - "cr give to @player Crimson 1"
  391. Message:
  392. - "&bCongratulations &f@player&f, you reached the level 27."
  393. - "&aThe next reward is in the level 28."
  394. 28:
  395. Command:
  396. - "cr give to @player Crimson 1"
  397. Message:
  398. - "&bCongratulations &f@player&f, you reached the level 28."
  399. - "&aThe next reward is in the level 29."
  400. 29:
  401. Command:
  402. - "cr give to @player Crimson 1"
  403. Message:
  404. - "&bCongratulations &f@player&f, you reached the level 29."
  405. - "&aThe next reward is in the level 30."
  406. 30:
  407. Command:
  408. - "broadcast &b&l@player &fhas reached &blevel 30!"
  409. - "eco give @player 100000"
  410. - "cr give to @player Mystical 1"
  411. - "lp user @player permission set playerparticles.effect.dust"
  412. - "lp user @player permission set deluxetags.tag.level30"
  413. Message:
  414. - "&bCongratulations &f@player&f, you reached the level 30."
  415. - "&bYou have unlocked &fDust Particles effect &band &fLvl30 Tag."
  416. - "&aThe next reward is in the level 31."
  417. 31:
  418. Command:
  419. - "cr give to @player Crimson 1"
  420. Message:
  421. - "&bCongratulations &f@player&f, you reached the level 31."
  422. - "&aThe next reward is in the level 32."
  423. 32:
  424. Command:
  425. - "cr give to @player Crimson 1"
  426. Message:
  427. - "&bCongratulations &f@player&f, you reached the level 32."
  428. - "&aThe next reward is in the level 33."
  429. 33:
  430. Command:
  431. - "cr give to @player Crimson 1"
  432. Message:
  433. - "&bCongratulations &f@player&f, you reached the level 33."
  434. - "&aThe next reward is in the level 34."
  435. 34:
  436. Command:
  437. - "cr give to @player Crimson 1"
  438. Message:
  439. - "&bCongratulations &f@player&f, you reached the level 34."
  440. - "&aThe next reward is in the level 35."
  441. 35:
  442. Command:
  443. - "broadcast &b&l@player &fhas reached &blevel 35!"
  444. - "eco give @player 125000"
  445. - "cr give to @player Mystical 1"
  446. Message:
  447. - "&bCongratulations &f@player&f, you reached the level 35."
  448. - "&aThe next reward is in the level 36."
  449. 36:
  450. Command:
  451. - "cr give to @player Crimson 1"
  452. Message:
  453. - "&bCongratulations &f@player&f, you reached the level 36."
  454. - "&aThe next reward is in the level 37."
  455. 37:
  456. Command:
  457. - "cr give to @player Crimson 1"
  458. Message:
  459. - "&bCongratulations &f@player&f, you reached the level 37."
  460. - "&aThe next reward is in the level 38."
  461. 38:
  462. Command:
  463. - "cr give to @player Crimson 1"
  464. Message:
  465. - "&bCongratulations &f@player&f, you reached the level 38."
  466. - "&aThe next reward is in the level 39."
  467. 39:
  468. Command:
  469. - "cr give to @player Crimson 1"
  470. Message:
  471. - "&bCongratulations &f@player&f, you reached the level 39."
  472. - "&aThe next reward is in the level 40."
  473. 40:
  474. Command:
  475. - "broadcast &b&l@player &fhas reached &blevel 40!"
  476. - "eco give @player 100000"
  477. - "cr give to @player Mystical 1"
  478. - "lp user @player permission set Pet.type.pig"
  479. - "lp user @player permission set deluxetags.tag.level40"
  480. Message:
  481. - "&bCongratulations &f@player&f, you reached the level 40."
  482. - "&bYou have unlocked &fPig Pet &band &fLvl40 Tag."
  483. - "&aThe next reward is in the level 41."
  484. 41:
  485. Command:
  486. - "cr give to @player Crimson 1"
  487. Message:
  488. - "&bCongratulations &f@player&f, you reached the level 41."
  489. - "&aThe next reward is in the level 42."
  490. 42:
  491. Command:
  492. - "cr give to @player Crimson 1"
  493. Message:
  494. - "&bCongratulations &f@player&f, you reached the level 42."
  495. - "&aThe next reward is in the level 43."
  496. 43:
  497. Command:
  498. - "cr give to @player Crimson 1"
  499. Message:
  500. - "&bCongratulations &f@player&f, you reached the level 43."
  501. - "&aThe next reward is in the level 44."
  502. 44:
  503. Command:
  504. - "cr give to @player Crimson 1"
  505. Message:
  506. - "&bCongratulations &f@player&f, you reached the level 44."
  507. - "&aThe next reward is in the level 45."
  508. 45:
  509. Command:
  510. - "broadcast &b&l@player &fhas reached &blevel 45!"
  511. - "eco give @player 100000"
  512. - "cr give to @player Mystical 1"
  513. Message:
  514. - "&bCongratulations &f@player&f, you reached the level 45."
  515. - "&aThe next reward is in the level 46."
  516. 46:
  517. Command:
  518. - "cr give to @player Crimson 1"
  519. Message:
  520. - "&bCongratulations &f@player&f, you reached the level 46."
  521. - "&aThe next reward is in the level 47."
  522. 47:
  523. Command:
  524. - "cr give to @player Crimson 1"
  525. Message:
  526. - "&bCongratulations &f@player&f, you reached the level 47."
  527. - "&aThe next reward is in the level 48."
  528. 48:
  529. Command:
  530. - "cr give to @player Crimson 1"
  531. Message:
  532. - "&bCongratulations &f@player&f, you reached the level 48."
  533. - "&aThe next reward is in the level 49."
  534. 49:
  535. Command:
  536. - "cr give to @player Crimson 1"
  537. Message:
  538. - "&bCongratulations &f@player&f, you reached the level 49."
  539. - "&aThe next reward is in the level 50."
  540. 50:
  541. Command:
  542. - "broadcast &b&l@player &fhas reached &blevel 50!"
  543. - "eco give @player 250000"
  544. - "cr give to @player Mystical 1"
  545. - "lp user @player permission set iDisguise.mob.pig"
  546. - "lp user @player permission set deluxetags.tag.level50"
  547. Message:
  548. - "&bCongratulations &f@player&f, you reached the level 50."
  549. - "&bYou have unlocked &fPig Disguise &band &fLvl50 Tag."
  550. - "&aThe next reward is in the level 51."
  551. 51:
  552. Command:
  553. - "cr give to @player Forsaken 1"
  554. Message:
  555. - "&bCongratulations &f@player&f, you reached the level 51."
  556. - "&aThe next reward is in the level 52."
  557. 52:
  558. Command:
  559. - "cr give to @player Forsaken 1"
  560. Message:
  561. - "&bCongratulations &f@player&f, you reached the level 52."
  562. - "&aThe next reward is in the level 53."
  563. 53:
  564. Command:
  565. - "cr give to @player Forsaken 1"
  566. Message:
  567. - "&bCongratulations &f@player&f, you reached the level 53."
  568. - "&aThe next reward is in the level 54."
  569. 54:
  570. Command:
  571. - "cr give to @player Forsaken 1"
  572. Message:
  573. - "&bCongratulations &f@player&f, you reached the level 54."
  574. - "&aThe next reward is in the level 55."
  575. 55:
  576. Command:
  577. - "broadcast &b&l@player &fhas reached &blevel 55!"
  578. - "eco give @player 100000"
  579. - "cr give to @player Mystical 1"
  580. Message:
  581. - "&bCongratulations &f@player&f, you reached the level 55."
  582. - "&aThe next reward is in the level 56."
  583. 56:
  584. Command:
  585. - "cr give to @player Forsaken 1"
  586. Message:
  587. - "&bCongratulations &f@player&f, you reached the level 56."
  588. - "&aThe next reward is in the level 57."
  589. 57:
  590. Command:
  591. - "cr give to @player Forsaken 1"
  592. Message:
  593. - "&bCongratulations &f@player&f, you reached the level 57."
  594. - "&aThe next reward is in the level 58."
  595. 58:
  596. Command:
  597. - "cr give to @player Forsaken 1"
  598. Message:
  599. - "&bCongratulations &f@player&f, you reached the level 58."
  600. - "&aThe next reward is in the level 59."
  601. 59:
  602. Command:
  603. - "cr give to @player Forsaken 1"
  604. Message:
  605. - "&bCongratulations &f@player&f, you reached the level 59."
  606. - "&aThe next reward is in the level 60."
  607. 60:
  608. Command:
  609. - "broadcast &b&l@player &fhas reached &blevel 60!"
  610. - "eco give @player 100000"
  611. - "cr give to @player Mystical 1"
  612. - "lp user @player permission set playerparticles.effect.CLOUD"
  613. - "lp user @player permission set deluxetags.tag.level60"
  614. Message:
  615. - "&bCongratulations &f@player&f, you reached the level 60."
  616. - "&bYou have unlocked &fCloud Particle &band &fLvl60 Tag."
  617. - "&aThe next reward is in the level 61."
  618. 61:
  619. Command:
  620. - "cr give to @player Forsaken 1"
  621. Message:
  622. - "&bCongratulations &f@player&f, you reached the level 61."
  623. - "&aThe next reward is in the level 62."
  624. 62:
  625. Command:
  626. - "cr give to @player Forsaken 1"
  627. Message:
  628. - "&bCongratulations &f@player&f, you reached the level 62."
  629. - "&aThe next reward is in the level 63."
  630. 63:
  631. Command:
  632. - "cr give to @player Forsaken 1"
  633. Message:
  634. - "&bCongratulations &f@player&f, you reached the level 63."
  635. - "&aThe next reward is in the level 64."
  636. 64:
  637. Command:
  638. - "cr give to @player Forsaken 1"
  639. Message:
  640. - "&bCongratulations &f@player&f, you reached the level 64."
  641. - "&aThe next reward is in the level 65."
  642. 65:
  643. Command:
  644. - "broadcast &b&l@player &fhas reached &blevel 65!"
  645. - "eco give @player 100000"
  646. - "cr give to @player Mystical 1"
  647. Message:
  648. - "&bCongratulations &f@player&f, you reached the level 65."
  649. - "&aThe next reward is in the level 66."
  650. 66:
  651. Command:
  652. - "cr give to @player Forsaken 1"
  653. Message:
  654. - "&bCongratulations &f@player&f, you reached the level 66."
  655. - "&aThe next reward is in the level 67."
  656. 67:
  657. Command:
  658. - "cr give to @player Forsaken 1"
  659. Message:
  660. - "&bCongratulations &f@player&f, you reached the level 67."
  661. - "&aThe next reward is in the level 68."
  662. 68:
  663. Command:
  664. - "cr give to @player Forsaken 1"
  665. Message:
  666. - "&bCongratulations &f@player&f, you reached the level 68."
  667. - "&aThe next reward is in the level 69."
  668. 69:
  669. Command:
  670. - "cr give to @player Forsaken 1"
  671. Message:
  672. - "&bCongratulations &f@player&f, you reached the level 69."
  673. - "&aThe next reward is in the level 70."
  674. 70:
  675. Command:
  676. - "broadcast &b&l@player &fhas reached &blevel 70!"
  677. - "eco give @player 200000"
  678. - "cr give to @player Mystical 1"
  679. - "lp user @player permission set Pet.type.sheep"
  680. - "lp user @player permission set deluxetags.tag.level70"
  681. Message:
  682. - "&bCongratulations &f@player&f, you reached the level 70."
  683. - "&bYou have unlocked &fSheep Pet &band &fLvl70 Tag."
  684. - "&aThe next reward is in the level 71."
  685. 71:
  686. Command:
  687. - "cr give to @player Forsaken 1"
  688. Message:
  689. - "&bCongratulations &f@player&f, you reached the level 71."
  690. - "&aThe next reward is in the level 72."
  691. 72:
  692. Command:
  693. - "cr give to @player Forsaken 1"
  694. Message:
  695. - "&bCongratulations &f@player&f, you reached the level 72."
  696. - "&aThe next reward is in the level 73."
  697. 73:
  698. Command:
  699. - "cr give to @player Forsaken 1"
  700. Message:
  701. - "&bCongratulations &f@player&f, you reached the level 73."
  702. - "&aThe next reward is in the level 74."
  703. 74:
  704. Command:
  705. - "cr give to @player Forsaken 1"
  706. Message:
  707. - "&bCongratulations &f@player&f, you reached the level 74."
  708. - "&aThe next reward is in the level 75."
  709. 75:
  710. Command:
  711. - "broadcast &b&l@player &fhas reached &blevel 75!"
  712. - "eco give @player 100000"
  713. - "cr give to @player Mystical 1"
  714. Message:
  715. - "&bCongratulations &f@player&f, you reached the level 75."
  716. - "&aThe next reward is in the level 76."
  717. 76:
  718. Command:
  719. - "cr give to @player Mystical 1"
  720. Message:
  721. - "&bCongratulations &f@player&f, you reached the level 76."
  722. - "&aThe next reward is in the level 77."
  723. 77:
  724. Command:
  725. - "cr give to @player Mystical 1"
  726. Message:
  727. - "&bCongratulations &f@player&f, you reached the level 77."
  728. - "&aThe next reward is in the level 78."
  729. 78:
  730. Command:
  731. - "cr give to @player Mystical 1"
  732. Message:
  733. - "&bCongratulations &f@player&f, you reached the level 78."
  734. - "&aThe next reward is in the level 79."
  735. 79:
  736. Command:
  737. - "cr give to @player Mystical 1"
  738. Message:
  739. - "&bCongratulations &f@player&f, you reached the level 79."
  740. - "&aThe next reward is in the level 80."
  741. 80:
  742. Command:
  743. - "broadcast &b&l@player &fhas reached &blevel 80!"
  744. - "eco give @player 200000"
  745. - "cr give to @player Mystical 2"
  746. - "lp user @player permission set iDisguise.mob.wolf"
  747. - "lp user @player permission set deluxetags.tag.level80"
  748. Message:
  749. - "&bCongratulations &f@player&f, you reached the level 80."
  750. - "&bYou have unlocked &fWolf Disguise &band &fLvl80 Tag."
  751. - "&aThe next reward is in the level 81."
  752. 81:
  753. Command:
  754. - "cr give to @player Mystical 1"
  755. Message:
  756. - "&bCongratulations &f@player&f, you reached the level 81."
  757. - "&aThe next reward is in the level 82."
  758. 82:
  759. Command:
  760. - "cr give to @player Mystical 1"
  761. Message:
  762. - "&bCongratulations &f@player&f, you reached the level 82."
  763. - "&aThe next reward is in the level 83."
  764. 83:
  765. Command:
  766. - "cr give to @player Mystical 1"
  767. Message:
  768. - "&bCongratulations &f@player&f, you reached the level 83."
  769. - "&aThe next reward is in the level 84."
  770. 84:
  771. Command:
  772. - "cr give to @player Mystical 1"
  773. Message:
  774. - "&bCongratulations &f@player&f, you reached the level 84."
  775. - "&aThe next reward is in the level 85."
  776. 85:
  777. Command:
  778. - "broadcast &b&l@player &fhas reached &blevel 75!"
  779. - "eco give @player 100000"
  780. - "cr give to @player Mystical 2"
  781. Message:
  782. - "&bCongratulations &f@player&f, you reached the level 85."
  783. - "&aThe next reward is in the level 86."
  784. 86:
  785. Command:
  786. - "cr give to @player Mystical 1"
  787. Message:
  788. - "&bCongratulations &f@player&f, you reached the level 86."
  789. - "&aThe next reward is in the level 87."
  790. 87:
  791. Command:
  792. - "cr give to @player Mystical 1"
  793. Message:
  794. - "&bCongratulations &f@player&f, you reached the level 87."
  795. - "&aThe next reward is in the level 88."
  796. 88:
  797. Command:
  798. - "cr give to @player Mystical 1"
  799. Message:
  800. - "&bCongratulations &f@player&f, you reached the level 88."
  801. - "&aThe next reward is in the level 89."
  802. 89:
  803. Command:
  804. - "cr give to @player Mystical 1"
  805. Message:
  806. - "&bCongratulations &f@player&f, you reached the level 89."
  807. - "&aThe next reward is in the level 90."
  808. 90:
  809. Command:
  810. - "broadcast &b&l@player &fhas reached &blevel 90!"
  811. - "eco give @player 200000"
  812. - "cr give to @player Mystical 2"
  813. - "lp user @player permission set playerparticles.effect.BLOCK"
  814. - "lp user @player permission set deluxetags.tag.level90"
  815. Message:
  816. - "&bCongratulations &f@player&f, you reached the level 90."
  817. - "&bYou have unlocked &fBlock Particle &band &fLvl90 Tag."
  818. - "&aThe next reward is in the level 91."
  819. 91:
  820. Command:
  821. - "cr give to @player Mystical 1"
  822. Message:
  823. - "&bCongratulations &f@player&f, you reached the level 91."
  824. - "&aThe next reward is in the level 92."
  825. 92:
  826. Command:
  827. - "cr give to @player Mystical 1"
  828. Message:
  829. - "&bCongratulations &f@player&f, you reached the level 92."
  830. - "&aThe next reward is in the level 93."
  831. 93:
  832. Command:
  833. - "cr give to @player Mystical 1"
  834. Message:
  835. - "&bCongratulations &f@player&f, you reached the level 93."
  836. - "&aThe next reward is in the level 94."
  837. 94:
  838. Command:
  839. - "cr give to @player Mystical 1"
  840. Message:
  841. - "&bCongratulations &f@player&f, you reached the level 94."
  842. - "&aThe next reward is in the level 95."
  843. 95:
  844. Command:
  845. - "broadcast &b&l@player &fhas reached &blevel 95!"
  846. - "eco give @player 100000"
  847. - "cr give to @player Mystical 2"
  848. Message:
  849. - "&bCongratulations &f@player&f, you reached the level 95."
  850. - "&aThe next reward is in the level 96."
  851. 96:
  852. Command:
  853. - "cr give to @player Mystical 1"
  854. Message:
  855. - "&bCongratulations &f@player&f, you reached the level 96."
  856. - "&aThe next reward is in the level 97."
  857. 97:
  858. Command:
  859. - "cr give to @player Mystical 1"
  860. Message:
  861. - "&bCongratulations &f@player&f, you reached the level 97."
  862. - "&aThe next reward is in the level 98."
  863. 98:
  864. Command:
  865. - "cr give to @player Mystical 1"
  866. Message:
  867. - "&bCongratulations &f@player&f, you reached the level 98."
  868. - "&aThe next reward is in the level 99."
  869. 99:
  870. Command:
  871. - "cr give to @player Mystical 1"
  872. Message:
  873. - "&bCongratulations &f@player&f, you reached the level 99."
  874. - "&aThe next reward is in the level 100."
  875. 100:
  876. Command:
  877. - "broadcast &b&l@player &fhas reached &blevel 100! Max Level!"
  878. - "eco give @player 500000"
  879. - "cr give to @player Mystical 5"
  880. - "lp user @player permission set Pet.type.Wither"
  881. - "lp user @player permission set deluxetags.tag.level100"
  882. - "lp user @player permission set essentials.fly"
  883. - "lp user @player permission set essentials.fly.safelogin"
  884. Message:
  885. - "&bCongratulations &f@player&f, you reached the level 100."
  886. - "&bYou have unlocked &fWither Pet, /Fly &band &fLvl100 Tag."
  887. - "&aYou have reached MAX LEVEL!!! &b&lCongratulations."
  888.  
  889. Progress_Bar_Segments: 10
  890. Progress_Bar_Segment: "■"
  891.  
  892. #If true, the player will receive an action bar message on receive exp.
  893. #This option is for 1.8 servers!
  894. ActionBar_Message: true
  895.  
  896. Messages:
  897. Booster:
  898. NoBoosters_Own: "&cYou haven't enabled boosters!"
  899. NoBoosters_Other: "&f@player &chasn't enabled boosters!"
  900. RemainingTime_Own: "&aYou have a &e@amountx &abooster for &e@time &aminutes!"
  901. RemainingTime_Other: "&e@player &ahas a &e@amountx &abooster for &e@time &aminutes!"
  902. Booster_Set: "&aYou defined a &e@amountx &abooster to the player &e@player &afor &e@time &aminutes!"
  903. Booster_Received: "&aYou received a &e@amountx &abooster &afor &e@time &aminutes!"
  904. Help_Topic:
  905. Admin:
  906. - " "
  907. - "&c-=-=-=-=-=-=-=-=-=-= &aPlayer Levels &c-=-=-=-=-=-=-=-=-=-="
  908. - "&f&l* &b/level"
  909. - "&f&l* &b/level top"
  910. - "&f&l* &b/level help"
  911. - "&f&l* &b/level <player>"
  912. - "&f&l* &b/level <give>/<set>/<take> <player> <amount>"
  913. - "&f&l* &b/level <giveexp> <player> <amount>"
  914. - "&f&l* &b/level <setexp> <player> <amount>"
  915. - "&f&l* &b/level <take> <player> <amount>"
  916. - "&f&l* &b/level clear <player>"
  917. - "&e- &ahelp: &cSee the help page."
  918. - "&e- &atop: &cSee the best levels in the server"
  919. - "&e- &aplayer: &cSee the level of a certain player."
  920. - "&e- &agive: &cGive level for a certain player."
  921. - "&e- &agiveexp: &cGive exp for a certain player."
  922. - "&e- &atakeexp: &cTake exp for a certain player."
  923. - "&e- &asetexp: &cSet the exp of a certain player."
  924. - "&e- &aset: &cSet the level of a certain player."
  925. - "&e- &aamount: &cAmount of your action."
  926. - "&e- &atake: &cTake level from a certain player."
  927. - "&e- &aclear: &cSet the player level to starts level and 0 exp."
  928. - "&c-=-=-=-=-=-=-=-=-=-= &aPlayer Levels &c-=-=-=-=-=-=-=-=-=-="
  929. - " "
  930. Player:
  931. - " "
  932. - "&c-=-=-=-=-=-=-=-=-=-= &aPlayer Levels &c-=-=-=-=-=-=-=-=-=-="
  933. - "&f&l* &b/level"
  934. - "&f&l* &b/level top"
  935. - "&f&l* &b/level help"
  936. - "&f&l* &b/level <player>"
  937. - "&e- &ahelp: &cSee the help page."
  938. - "&e- &atop: &cSee the best levels in the server"
  939. - "&e- &aplayer: &cSee the level of a certain player."
  940. - "&c-=-=-=-=-=-=-=-=-=-= &aPlayer Levels &c-=-=-=-=-=-=-=-=-=-="
  941. - " "
  942. Player_Clear: "&cYou cleared the player &f@player&c."
  943. Max_Level: "&cYou reached the max level."
  944. Much_EXP: "&cYou are receiving much experience, we will warn you when the process ends."
  945. Process_Finished: "&aProcess finished. Your new level is: &f@level"
  946. Needs_Exp: "&aNeed &f@exp &aexp to the next level"
  947. Your_Level: "&b&lAtheran &8| &fYour level is: &b@level"
  948. Your_EXP: "&b&lAtheran &8| &fYour experience is: &b@exp"
  949. Other_Level: "&b&lAtheran &8| &b@player &fhas &b@level &flevels!"
  950. Other_EXP: "&b&lAtheran &8| &b@player &fhas &b@exp &fof experience."
  951. Level_UP: "&b&lAtheran &8| &aLevel up! New level: &f@newlevel"
  952. Correct_Usage: "&b&lAtheran &8| &cUse: /level"
  953. Player_Not_Found: "&b&lAtheran &8| &cPlayer &f@player &cnot found."
  954. Only_Numbers: "&b&lAtheran &8| &cUse only numbers."
  955. No_Permission: "&b&lAtheran &8| &cYou don't have permission."
  956. Level_Give: "&b&lAtheran &8| &aYou give &f@levels &alevels to the player &f@player&a."
  957. Level_Remove: "&b&lAtheran &8| &cYou taked &f@levels &clevels from the player &f@player&a."
  958. Level_Set: "&b&lAtheran &8| &cYou setted &f@levels &clevels to the player &f@player&a."
  959. Exp_Give: "&b&lAtheran &8| &aYou gived &f@exp &aof experience to the player &f@player&a."
  960. Exp_Set: "&b&lAtheran &8| &aYou setted &f@exp &aof experience to the player &f@player&a."
  961. Exp_Take: "&b&lAtheran &8| &aYou removed &f@exp &aof experience to the player &f@player&a."
  962. Received_EXP: "&b&lAtheran &8| &aYou received &f@exp &aEXP."
  963. Lost_EXP: "&b&lAtheran &8| &cYou lost &f@exp &cEXP."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement