WillyBYT

jobConfig.yml

Dec 10th, 2018
603
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 77.98 KB | None | 0 0
  1. # Jobs configuration.
  2. #
  3. # Stores information about each job.
  4. #
  5. # NOTE: When having multiple jobs, both jobs will give the income payout to the player
  6. # even if they give the pay for one action (make the configurations with this in mind)
  7. # and each job will get the respective experience.
  8. #
  9. # e.g If player has 2 jobs where job1 gives 10 income and experience for killing a player
  10. # and job2 gives 5 income and experience for killing a player. When the user kills a player
  11. # they will get 15 income and job1 will gain 10 experience and job2 will gain 5 experience.
  12.  
  13. Jobs:
  14. # must be one word. This job will be ignored as this is just example of all posible actions
  15. exampleJob:
  16. # full name of the job (displayed when browsing a job, used when joining and leaving)
  17. # also can be used as a prefix for the user's name if the option is enabled.
  18. # Shown as a prefix only when the user has 1 job.
  19. #
  20. # NOTE: Must be 1 word
  21. fullname: Woodcutter
  22. # Shortened version of the name of the job. Used as a prefix when the user has more
  23. # than 1 job
  24. shortname: W
  25. description: Earns money felling and planting trees
  26. # Full description of job to be shown in job browse command
  27. FullDescription:
  28. - "&2Get money for:"
  29. - " &7Planting trees"
  30. - " &7Cutting down trees"
  31. - " &7Killing players"
  32. # The colour of the name, for a full list of supported colours, go to the message config.
  33. ChatColour: GREEN
  34. # [OPTIONAL] The colour of the boss bar: GREEN, BLUE, RED, WHITE, YELLOW, PINK, PURPLE.
  35. BossBarColour: WHITE
  36. # Option to let you choose what kind of prefix this job adds to your name.
  37. # options are: full, title, job, shortfull, shorttitle, shortjob and none
  38. chat-display: full
  39. # [OPTIONAL] - the maximum level of this class
  40. max-level: 10
  41. # [OPTIONAL] - the maximum level of this class with specific permission
  42. # use jobs.[jobsname].vipmaxlevel, in this case it will be jobs.exampleJob.vipmaxlevel
  43. vip-max-level: 20
  44. # [OPTIONAL] - the maximum number of users on the server that can have this job at
  45. # any one time (includes offline players).
  46. slots: 1
  47. # [OPTIONAL] Soft limits will allow to stop income/exp/point payment increase at some particular level but allow further general leveling.
  48. # In example if player is level 70, he will get paid as he would be at level 50, exp gain will be as he would be at lvl 40 and point gain will be as at level 60
  49. # This only aplies after players level is higher than provided particular limit.
  50. softIncomeLimit: 50
  51. softExpLimit: 40
  52. softPointsLimit: 60
  53. # Equation used for calculating how much experience is needed to go to the next level.
  54. # Available parameters:
  55. # numjobs - the number of jobs the player has
  56. # joblevel - the level the player has attained in the job.
  57. # NOTE: Please take care of the brackets when modifying this equation.
  58. leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  59. # Equation used for calculating how much income is given per action for the job level.
  60. # Available parameters:
  61. # numjobs - the number of jobs the player has
  62. # baseincome - the income for the action at level 1 (as set in the configuration).
  63. # joblevel - the level the player has attained in the job.
  64. # NOTE: Please take care of the brackets when modifying this equation.
  65. income-progression-equation: baseincome+(baseincome*(joblevel-1)*0.01)-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  66. # Equation used for calculating how much points is given per action for the job level.
  67. # Available parameters:
  68. # numjobs - the number of jobs the player has
  69. # basepoints - the points for the action at level 1 (as set in the configuration).
  70. # joblevel - the level the player has attained in the job.
  71. # NOTE: Please take care of the brackets when modifying this equation.
  72. points-progression-equation: basepoints+(basepoints*(joblevel-1)*0.01)-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  73. # Equation used for calculating how much experience is given per action for the job level.
  74. # Available parameters:
  75. # numjobs - the number of jobs the player has
  76. # baseexperience - the experience for the action at level 1 (as set in the configuration).
  77. # joblevel - the level the player has attained in the job.
  78. # NOTE: Please take care of the brackets when modifying this equation.
  79. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  80. # Defines how often in seconds player can rejoin this job. Can be bypassed with jobs.rejoinbypass
  81. rejoinCooldown: 10
  82. # GUI icon information when using GUI function
  83. Gui:
  84. # id of block
  85. Id: 17
  86. # data of block, usualy its 0, but in example Diorite will have id of 1 and data of 3
  87. Data: 2
  88. # Defines maximum amount of daily quests player can have from THIS job
  89. # This will not have effect on overall quest amount player will have
  90. maxDailyQuests: 3
  91. # Daily quests
  92. # Each job can have as many daily quests as you want
  93. # Players will have access to quests from jobs he is currently working at
  94. Quests:
  95. # Quest identification. Can be any ONE word or number or both of them. This doesnt have any real meaning but it cant repeat
  96. 1:
  97. # Quest name used for quests list, don't forget to enclose it with " "
  98. Name: "Break Oak wood"
  99. # Quest action can be any valid job action. Look at lower for all possible action types
  100. Action: Break
  101. # Target id or name. Comes in same format as it is for regular job action
  102. Target: "17-0"
  103. # Amount of actions players should perform to complete this quest
  104. Amount: 300
  105. # Command list to be performed after quest is finished.
  106. # Use [playerName] to insert players name who finished that quest
  107. RewardCommands:
  108. - "money give [playerName] 500"
  109. - "msg [playerName] Completed quest!"
  110. # Quest description to be used to explain quest requirements or rewards for player
  111. RewardDesc:
  112. - "Break 300 Oak wood"
  113. - "Get 500 bucks for this"
  114. # Defines chance in getting this quest.
  115. # If you have set 10 quests and player can have only 2, then quests with biggest chance will be picked most likely
  116. # This will allow to have some rare quests with legendary rewards
  117. Chance: 40
  118. # Defines to which job level you want to give out this quest.
  119. # Keep in mind that player will keep quest even if he is over level limit if he got new one while being under
  120. # In example: player with level 2 takes quests and levels up to level 5, he still can finish this quest and after next quest reset (check general config file) he will no longer have option to get this quest
  121. toLevel: 3
  122. # Defines from which level you want to give option to get this quest
  123. # You can use both limitations to have limited quests for particular job level ranges
  124. fromLevel: 5
  125. 2:
  126. Name: "Zombie killer"
  127. Action: Kill
  128. Target: Zombie
  129. Amount: 50
  130. RewardCommands:
  131. - "money give [playerName] 2000"
  132. - "msg [playerName] Completed quest!"
  133. RewardDesc:
  134. - "Kill 50 zombies"
  135. - "Get 2000 for this!"
  136. 3:
  137. Name: "Chicken cooker"
  138. Action: Smelt
  139. Target: "COOKED_CHICKEN"
  140. Amount: 20
  141. RewardCommands:
  142. - "money give [playerName] 300"
  143. - "msg [playerName] Completed quest!"
  144. RewardDesc:
  145. - "Cook some chicken breasts"
  146. - "Get 300 for this!"
  147. ########################################################################
  148. # Section used to configure what items the job gets paid for, how much
  149. # they get paid and how much experience they gain.
  150. #
  151. # For break and place, the block name or id is used.
  152. # You can select a sub-type by using a '-' between the id and the bit
  153. # value for the sub-type. e.g LOG-0 = usual log, LOG-2 = birch log
  154. # 17-2 = birch log.
  155. #
  156. # If no sub-type is give, the payout will be for all sub-types.
  157. #
  158. # To get a list of all available block types, check the
  159. # bukkit JavaDocs for a complete list of block types
  160. # https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  161. #
  162. # For kill tags (Kill and custom-kill), the name is the name of the
  163. # mob.
  164. # Available mobs:
  165. # Bat
  166. # Blaze
  167. # Cave_spider
  168. # Chicken
  169. # Cow
  170. # Creeper
  171. # Ender_dragon
  172. # Enderman
  173. # Endermite
  174. # Ghast
  175. # Giant
  176. # Guardian
  177. # GuardianElder
  178. # Horse
  179. # HorseZombie
  180. # HorseSkeleton
  181. # Iron_golem
  182. # Magma_cube
  183. # Mushroom_cow
  184. # Ocelot
  185. # Pig
  186. # Player
  187. # Polar_Bear
  188. # Rabbit
  189. # Sheep
  190. # Silverfish
  191. # Skeleton
  192. # SkeletonWither
  193. # SkeletonStray
  194. # Shulker
  195. # Slime
  196. # Snowman
  197. # Spider
  198. # Squid
  199. # Villager
  200. # Witch
  201. # Wither
  202. # Wolf
  203. # Zombie
  204. # ZombieVillager
  205. # ZombieHusk
  206. #
  207. #
  208. # NOTE: mob names are case sensitive.
  209. #
  210. # For custom-kill, it is the name of the job (also case sensitive).
  211. #
  212. # NOTE: If a job has both the pay for killing a player and for killing a
  213. # specific class, they will get both payments.
  214. ########################################################################
  215. # payment for breaking a block
  216. Break:
  217. # block name/id (with optional sub-type)
  218. LOG:
  219. # base income, can be not used if using point system
  220. income: 5.0
  221. # base points, can be not used if using income system
  222. points: 5.0
  223. # base experience
  224. experience: 5.0
  225. # (OPTIONAL) from which level of this job player can get money for this action
  226. # if not given, then player will always get money for this action
  227. # this can be used for any action
  228. from-level: 1
  229. # (OPTIONAL) until which level player can get money for this action.
  230. # if not given, then there is no limit
  231. # this can be used for any action
  232. until-level: 30
  233. # payment for drinking a potion
  234. Drink:
  235. POTION:
  236. income: 0.5
  237. experience: 2.0
  238. REGENERATION_POTION2:
  239. income: 1.3
  240. experience: 2.0
  241. HEALING_POTION:
  242. income: 1.4
  243. experience: 2.0
  244. # payment for breaking a block with tnt
  245. TNTBreak:
  246. LOG:
  247. income: 5.0
  248. points: 5.0
  249. experience: 5.0
  250. # payment for placing a block
  251. Place:
  252. SAPLING:
  253. income: 1.0
  254. points: 1.0
  255. experience: 1.0
  256. WOOD:
  257. income: 2.0
  258. points: 2.0
  259. experience: 2.0
  260. # killing a mob
  261. Kill:
  262. # mob name
  263. Player:
  264. # base income
  265. income: 7.5
  266. # base experience
  267. experience: 7.5
  268. # killing a MythicMob
  269. MMKill:
  270. # mob name
  271. CustomNameHere:
  272. # base income
  273. income: 7.5
  274. # base experience
  275. experience: 7.5
  276. # Killing player with certain job
  277. custom-kill:
  278. Woodcutter:
  279. income: 10.0
  280. experience: 10.0
  281. # Tamig animals
  282. Tame:
  283. Wolf:
  284. income: 2.0
  285. experience: 5.0
  286. # Breeding animals
  287. Breed:
  288. Wolf:
  289. income: 2.0
  290. experience: 5.0
  291. # Eating food
  292. Eat:
  293. cooked_rabbit:
  294. income: 5
  295. experience: 5
  296. baked_potato:
  297. income: 5
  298. experience: 5
  299. # Milking cows, only one option is available
  300. Milk:
  301. Cow:
  302. income: 2.0
  303. experience: 5.0
  304. Mushroomcow:
  305. income: 5.0
  306. experience: 10.0
  307. # Shear sheeps by its color
  308. Shear:
  309. Black:
  310. income: 2.0
  311. experience: 5.0
  312. Blue:
  313. income: 2.0
  314. experience: 5.0
  315. Brown:
  316. income: 2.0
  317. experience: 5.0
  318. Cyan:
  319. income: 2.0
  320. experience: 5.0
  321. Gray:
  322. income: 2.0
  323. experience: 5.0
  324. Green:
  325. income: 2.0
  326. experience: 5.0
  327. Light_blue:
  328. income: 2.0
  329. experience: 5.0
  330. Lime:
  331. income: 2.0
  332. experience: 5.0
  333. Magenta:
  334. income: 2.0
  335. experience: 5.0
  336. Orange:
  337. income: 2.0
  338. experience: 5.0
  339. Pink:
  340. income: 2.0
  341. experience: 5.0
  342. Purple:
  343. income: 2.0
  344. experience: 5.0
  345. Red:
  346. income: 2.0
  347. experience: 5.0
  348. Silver:
  349. income: 2.0
  350. experience: 5.0
  351. White:
  352. income: 2.0
  353. experience: 5.0
  354. Yellow:
  355. income: 2.0
  356. experience: 5.0
  357. # dyeing armor
  358. Dye:
  359. LEATHER_BOOTS:
  360. income: 1.0
  361. experience: 1.0
  362. LEATHER_CHESTPLATE:
  363. income: 1.0
  364. experience: 1.0
  365. LEATHER_HELMET:
  366. income: 1.0
  367. experience: 1.0
  368. LEATHER_LEGGINGS:
  369. income: 1.0
  370. experience: 1.0
  371. 351:
  372. income: 1.0
  373. experience: 1.0
  374. # Catching fish
  375. Fish:
  376. '349':
  377. income: 20.0
  378. experience: 25.0
  379. # Repairing items
  380. Repair:
  381. WOOD_SWORD:
  382. income: 1.0
  383. experience: 1.0
  384. IRON_SWORD:
  385. income: 2.0
  386. experience: 2.0
  387. # Crafting items
  388. Craft:
  389. WOOD_SWORD:
  390. income: 1.5
  391. experience: 3.0
  392. LEATHER_BOOTS:
  393. income: 1.0
  394. experience: 6.0
  395. # Add ! at front when you want to pay for crafted items with special names. Always use double quotation marks, same as example
  396. "!Healing Bandage":
  397. income: 1.0
  398. experience: 6.0
  399. # Smelting ores
  400. Smelt:
  401. IRON_INGOT:
  402. income: 2.0
  403. experience: 8.0
  404. GOLD_INGOT:
  405. income: 4.5
  406. experience: 12
  407. # Enchanting items
  408. Enchant:
  409. # You can set item for which player will get money
  410. WOOD_SWORD:
  411. income: 1.5
  412. experience: 3.0
  413. LEATHER_BOOTS:
  414. income: 1.0
  415. experience: 6.0
  416. # Or/and you can give money for each enchantment they got
  417. DIG_SPEED-1:
  418. income: 3.0
  419. experience: 10.0
  420. DIG_SPEED-2:
  421. income: 6.0
  422. experience: 20.0
  423. # Brewing potions
  424. Brew:
  425. NETHER_STALK:
  426. income: 5.0
  427. experience: 3.0
  428. REDSTONE:
  429. income: 5.0
  430. experience: 3.0
  431. # Explore options. Each number represents players number in exploring that chunk
  432. # 1 means that player is first in this chunk, 2 is second and so on, so you can give money not only for first player ho discovers that chunk
  433. Explore:
  434. 1:
  435. income: 5.0
  436. experience: 5.0
  437. 2:
  438. income: 2.5
  439. experience: 2.5
  440. 3:
  441. income: 1.0
  442. experience: 1.0
  443. 4:
  444. income: 0.5
  445. experience: 0.5
  446. 5:
  447. income: 0.1
  448. experience: 0.1
  449. # permissions granted for joining class
  450. permissions:
  451. # example node
  452. aaaaaatest.node:
  453. # true to give, false to revoke
  454. value: true
  455. # minimum level needed to grant permission. Use 0 for all levels
  456. level: 0
  457. aaaaaatest.node2:
  458. value: true
  459. # Permission granted when reaching level 10
  460. level: 10
  461. # Permissions granted when particular conditions are meet
  462. conditions:
  463. # Condition name, irrelevant, you can write anything in here
  464. first:
  465. requires:
  466. # j marks that player should have particular jobs level and higher
  467. - j:Miner-50
  468. - j:Digger-50
  469. # p marks permission requirement
  470. - p:essentials.notnoob
  471. perform:
  472. # p marks permission, player will get if given true value, if used false, permission will be taken
  473. - p:essentials.fly-true
  474. # Commands executed when player reached level
  475. commands:
  476. tag:
  477. command: lp user [player] setdeluxetags.miner
  478. levelFrom: 25
  479. levelUntil: 25
  480. tagalert:
  481. command: /tellraw [player] ["",{"text":"[","color":"blue"},{"text":"JobTags","color":"dark_aqua"},{"text":"]","color":"blue"},{"text":" You can now use the tag for ","color":"aqua"},{"text":"Miner","bold":true,"color":"aqua"},{"text":"!","color":"aqua"}]
  482. levelFrom: 25
  483. levelUntil: 25
  484. # command name, just to have better idea what this do
  485. fly:
  486. # Command its self, this will be executed from console, so all commands should work
  487. # Possible variables are: [player] [jobname] [oldlevel] [newlevel]
  488. command: manuaddp [player] essentials.fly
  489. # When to execute this command first time
  490. levelFrom: 100
  491. # Until when to do this command
  492. # This can be set to same level as levelFrom, so this command will be executed only once
  493. levelUntil: 100
  494. kit:
  495. command: manuaddp [player] essentials.kits.woodcutter
  496. levelFrom: 150
  497. levelUntil: 150
  498. # Getting more money when equiped with specific weapon/tool ar wearing armor
  499. items:
  500. # Just name, dont have any impact
  501. firstOne:
  502. # Tool/Weapon id. Works for block Break, Fish, Animal tame, Breed, Monster/Player kill.
  503. id: 278
  504. # Items name, should be with color codes
  505. name: '&8Miner Pickaxe'
  506. # Item lore, again should come with color codes
  507. lore:
  508. - '&eBobs pick'
  509. - '&710% bonus XP'
  510. # Item enchantments, all enchantment names can be found https://hub.spigotmc.org/javadocs/spigot/org/bukkit/enchantments/Enchantment.html
  511. enchants:
  512. - DAMAGE_ALL=1
  513. - FIRE_ASPECT=1
  514. # Money boost: 1.1 is equals 10% more income when 0.9 is equals 10% less from base income
  515. moneyBoost: 1.1
  516. # Exp boost
  517. expBoost: 1.2
  518. # Point boost
  519. pointBoost: 1.3
  520. helmet:
  521. # Armor id. This one works with all jobs
  522. id: 310
  523. name: '&8Armor'
  524. lore:
  525. - '&eBobs armor'
  526. - '&710% bonus XP'
  527. moneyBoost: 1.1
  528. expBoost: 1.1
  529. # Limit item use to jobs level
  530. limitedItems:
  531. # Just name, dont have any impact
  532. firstOne:
  533. # Tool/Weapon id. Works for any interact action.
  534. id: 278
  535. # Level of this job player can start using this item
  536. level: 5
  537. # (optional) Items name, option to use color codes
  538. name: '&8Miner Pickaxe'
  539. # (optional) Item lore, again can come with color codes
  540. lore:
  541. - '&eBobs pick'
  542. - '&710% bonus XP'
  543. # (optional) Item enchantments, all enchantment names can be found https://hub.spigotmc.org/javadocs/spigot/org/bukkit/enchantments/Enchantment.html
  544. # enchant level can inrease with jobs level to give best RPG experiance
  545. enchants:
  546. - DAMAGE_ALL=1
  547. - FIRE_ASPECT=1
  548. cmd-on-join:
  549. - 'msg [name] Thx for joining this job!'
  550. - 'msg [name] Now start working and get money from [jobname] job!'
  551. cmd-on-leave:
  552. - 'msg [name] You have left this awesome [jobname] job'
  553. - 'msg [name] See you soon!'
  554. # from this point you can edit jobs by your liking, rename, remove or add new ones
  555. Woodcutter:
  556. fullname: Woodcutter
  557. shortname: W
  558. description: Earns money felling and planting trees
  559. ChatColour: GREEN
  560. chat-display: full
  561. max-level: 100
  562. leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  563. income-progression-equation: baseincome+(baseincome*(joblevel-1)*0.02)-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  564. points-progression-equation: basepoints+(basepoints*(joblevel-1)*0.01)-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  565. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  566. rejoinCooldown: 10
  567. cmd-on-leave:
  568. - "lp user [player] set mcmmo.perks.xp.customboost.woodcutting false"
  569. - "lp user [player] set cmi.command.top false"
  570.  
  571. commands:
  572. tagalert:
  573. command: /tellraw [player] ["",{"text":"[","color":"blue"},{"text":"JobTags","color":"dark_aqua"},{"text":"]","color":"blue"},{"text":" You can now use the tag for ","color":"aqua"},{"text":"WoodCutter","bold":true,"color":"aqua"},{"text":"!","color":"aqua"}]
  574. levelFrom: 25
  575. levelUntil: 25
  576. tag:
  577. command: lp user [player] set deluxetags.tag.woodcutter
  578. levelFrom: 25
  579. levelUntil: 100
  580. perk25:
  581. command: lp user [player] set mcmmo.perks.xp.customboost.woodcutting
  582. levelFrom: 25
  583. levelUntil: 100
  584. perk50:
  585. command: lp user [player] set cmi.command.top
  586. levelFrom: 50
  587. levelUntil: 50
  588. Gui:
  589. Id: 17
  590. Data: 2
  591. Break:
  592. LOG-0:
  593. income: 2.5
  594. points: 2.5
  595. experience: 2.5
  596. LOG-1:
  597. income: 2.0
  598. points: 2.5
  599. experience: 2.0
  600. LOG-2:
  601. income: 2.5
  602. points: 2.5
  603. experience: 2.5
  604. LOG-3:
  605. income: 2.5
  606. points: 2.5
  607. experience: 2.5
  608. 18-0:
  609. income: 0.5
  610. points: 0.5
  611. experience: 0.5
  612. 18-1:
  613. income: 0.5
  614. points: 0.5
  615. experience: 0.5
  616. 18-2:
  617. income: 0.5
  618. points: 0.5
  619. experience: 0.5
  620. 18-3:
  621. income: 0.5
  622. points: 0.5
  623. experience: 0.5
  624. 161-0:
  625. income: 0.5
  626. points: 0.5
  627. experience: 0.5
  628. 161-1:
  629. income: 0.5
  630. points: 0.5
  631. experience: 0.5
  632. 162-0:
  633. income: 2.5
  634. points: 2.5
  635. experience: 2.5
  636. 162-1:
  637. income: 2.5
  638. points: 2.5
  639. experience: 2.5
  640. custom-kill:
  641. Slayer:
  642. income: 10.0
  643. points: 10.0
  644. experience: 10.0
  645. Miner:
  646. fullname: Miner
  647. shortname: M
  648. description: Earns money mining minerals and ores.
  649. ChatColour: DARK_GRAY
  650. chat-display: full
  651. max-level: 100
  652. #slots: 10
  653. leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  654. income-progression-equation: baseincome+(baseincome*(joblevel-1)*0.02)-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  655. points-progression-equation: basepoints+(basepoints*(joblevel-1)*0.01)-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  656. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  657. rejoinCooldown: 10
  658. cmd-on-leave:
  659. - "lp user [player] set mcmmo.perks.xp.customboost.mining false"
  660. - "lp user [player] parent remove miner50"
  661. - "lp user [player] set autosmelt.use false"
  662. commands:
  663. tag:
  664. command: lp user [player] set deluxetags.tag.miner
  665. levelFrom: 25
  666. levelUntil: 100
  667. tagalert:
  668. command: tellraw [player] ["",{"text":"[","color":"blue"},{"text":"JobTags","color":"dark_aqua"},{"text":"]","color":"blue"},{"text":" You can now use the tag for ","color":"aqua"},{"text":"Miner","bold":true,"color":"aqua"},{"text":"!","color":"aqua"}]
  669. levelFrom: 25
  670. levelUntil: 25
  671. perk25:
  672. command: lp user [player] set mcmmo.perks.xp.customboost.mining
  673. levelFrom: 25
  674. levelUntil: 50
  675. perk50:
  676. command: lp user [player] parent add miner50
  677. levelFrom: 50
  678. levelUntil: 50
  679. perk75:
  680. command: lp user [player] set autosmelt.use
  681. levelFrom: 75
  682. levelUntil: 75
  683. Gui:
  684. Id: 278
  685. Data: 0
  686. Break:
  687. STONE:
  688. income: 0.3
  689. points: 0.3
  690. experience: 0.3
  691. STONE-1:
  692. income: 0.4
  693. experience: 0.4
  694. STONE-3:
  695. income: 0.4
  696. experience: 0.4
  697. STONE-5:
  698. income: 0.4
  699. experience: 0.4
  700. COAL_ORE:
  701. income: 3
  702. points: 2
  703. experience: 2
  704. SANDSTONE:
  705. income: 0.15
  706. points: 0.15
  707. experience: 0.15
  708. SANDSTONE-1:
  709. income: 0.15
  710. points: 0.15
  711. experience: 0.2
  712. SANDSTONE-2:
  713. income: 0.15
  714. points: 0.15
  715. experience: 0.2
  716. GLOWING_REDSTONE_ORE:
  717. income: 2.5
  718. points: 2
  719. experience: 2
  720. IRON_ORE:
  721. income: 3.5
  722. points: 3
  723. experience: 2
  724. GOLD_ORE:
  725. income: 5
  726. points: 4
  727. experience: 2
  728. LAPIS_ORE:
  729. income: 7.5
  730. points: 6
  731. experience: 2
  732. DIAMOND_ORE:
  733. income: 12
  734. points: 10
  735. experience: 12
  736. EMERALD_ORE:
  737. income: 15
  738. points: 15
  739. experience: 30
  740. QUARTZ_ORE:
  741. income: 2.5
  742. points: 2.5
  743. experience: 2.5
  744. OBSIDIAN:
  745. income: 5
  746. points: 5
  747. experience: 5
  748. MOSSY_COBBLESTONE:
  749. income: 2.5
  750. points: 2.5
  751. experience: 2.5
  752. NETHER_BRICK:
  753. income: 1.0
  754. points: 1
  755. experience: 1.0
  756. NETHER_BRICK_STAIRS:
  757. income: 3
  758. points: 3
  759. experience: 3
  760. NETHER_FENCE:
  761. income: 1
  762. points: 1
  763. experience: 1
  764. NETHERRACK:
  765. income: 0.1
  766. points: 0.1
  767. experience: 0.1
  768. PRISMARINE:
  769. income: 2.5
  770. points: 2.5
  771. experience: 2.5
  772. Place:
  773. RAILS:
  774. income: 2.0
  775. points: 2.0
  776. experience: 2.0
  777. IRON_ORE:
  778. income: -5.0
  779. experience: -5.0
  780. GOLD_ORE:
  781. income: -6.0
  782. experience: -6.0
  783. DIAMOND_ORE:
  784. income: -15.0
  785. experience: -15.0
  786. custom-kill:
  787. Slayer:
  788. income: 10.0
  789. points: 10.0
  790. experience: 10.0
  791. Builder:
  792. fullname: Builder
  793. shortname: B
  794. description: Earns money for building structures.
  795. ChatColour: WHITE
  796. chat-display: full
  797. max-level: 100
  798. #slots: 10
  799. leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  800. income-progression-equation: baseincome+(baseincome*(joblevel-1)*0.02)-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  801. points-progression-equation: basepoints+(basepoints*(joblevel-1)*0.01)-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  802. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  803. rejoinCooldown: 10
  804. cmd-on-leave:
  805. - "lp user [player] set cmi.command.top false"
  806. - "lp user [player] set cmi.damagecontrol.nofalldamage false"
  807. - "lp user [player] parent remove build75"
  808. - "lp user [player] parent remove build100"
  809. commands:
  810. tag:
  811. command: lp user [player] set deluxetags.tag.builder
  812. levelFrom: 25
  813. levelUntil: 50
  814. tagalert:
  815. command: /tellraw [player] ["",{"text":"[","color":"blue"},{"text":"JobTags","color":"dark_aqua"},{"text":"]","color":"blue"},{"text":" You can now use the tag for ","color":"aqua"},{"text":"Builder","bold":true,"color":"aqua"},{"text":"!","color":"aqua"}]
  816. levelFrom: 25
  817. levelUntil: 25
  818. perk25:
  819. command: lp user [player] set cmi.command.top
  820. levelFrom: 25
  821. levelUntil: 50
  822. perk50:
  823. command: lp user [player] set cmi.damagecontrol.nofalldamage
  824. levelFrom: 50
  825. levelUntil: 50
  826. perk75:
  827. command: lp user [player] parent add build75
  828. levelFrom: 75
  829. levelUntil: 75
  830. perk100a:
  831. command: lp user [player] parent add build100
  832. levelFrom: 100
  833. levelUntil: 100
  834. Gui:
  835. Id: 108
  836. Data: 0
  837. Place:
  838. STONE-2:
  839. income: 1.3
  840. points: 1.3
  841. experience: 2
  842. STONE-4:
  843. income: 1.3
  844. points: 1.3
  845. experience: 2
  846. STONE-6:
  847. income: 1.3
  848. points: 1.3
  849. experience: 2
  850. COBBLESTONE:
  851. income: 0.7
  852. points: 0.7
  853. experience: 2
  854. '5':
  855. income: 1.5
  856. points: 1.5
  857. experience: 2
  858. '35':
  859. income: 1.5
  860. points: 1.5
  861. experience: 2
  862. '41':
  863. income: 1.5
  864. points: 1.5
  865. experience: 2
  866. '42':
  867. income: 1.5
  868. points: 1.5
  869. experience: 2
  870. '44':
  871. income: 0.8
  872. points: 0.8
  873. experience: 2
  874. '45':
  875. income: 1.5
  876. points: 1.5
  877. experience: 2
  878. '47':
  879. income: 1.5
  880. points: 1.5
  881. experience: 2
  882. '48':
  883. income: 1.5
  884. points: 1.5
  885. experience: 2
  886. '49':
  887. income: 1.5
  888. points: 1.5
  889. experience: 2
  890. '53':
  891. income: 1.5
  892. points: 1.5
  893. experience: 2
  894. '54':
  895. income: 1.5
  896. points: 1.5
  897. experience: 2
  898. '57':
  899. income: 1.5
  900. points: 1.5
  901. experience: 2
  902. '58':
  903. income: 1.5
  904. points: 1.5
  905. experience: 2
  906. '61':
  907. income: 1.5
  908. points: 1.5
  909. experience: 2
  910. '65':
  911. income: 1.5
  912. points: 1.5
  913. experience: 2
  914. '67':
  915. income: 1.5
  916. points: 1.5
  917. experience: 2
  918. '79':
  919. income: 1.5
  920. points: 1.5
  921. experience: 2
  922. '80':
  923. income: 1.0
  924. points: 1.0
  925. experience: 2
  926. '84':
  927. income: 1.0
  928. points: 1.0
  929. experience: 2
  930. '85':
  931. income: 1.5
  932. points: 1.5
  933. experience: 2
  934. '89':
  935. income: 1.5
  936. points: 1.5
  937. experience: 2
  938. '95':
  939. income: 1.5
  940. points: 1.5
  941. experience: 2
  942. '96':
  943. income: 1.5
  944. points: 1.5
  945. experience: 2
  946. '98':
  947. income: 1.5
  948. points: 1.5
  949. experience: 2
  950. '101':
  951. income: 1.5
  952. points: 1.5
  953. experience: 2
  954. '102':
  955. income: 1.5
  956. points: 1.5
  957. experience: 2
  958. '107':
  959. income: 1.5
  960. points: 1.5
  961. experience: 2
  962. '108':
  963. income: 1.5
  964. points: 1.5
  965. experience: 2
  966. '109':
  967. income: 1.5
  968. points: 1.5
  969. experience: 2
  970. '112':
  971. income: 1.5
  972. points: 1.5
  973. experience: 2
  974. '113':
  975. income: 1.5
  976. points: 1.5
  977. experience: 2
  978. '114':
  979. income: 1.5
  980. points: 1.5
  981. experience: 2
  982. '116':
  983. income: 1.5
  984. points: 1.5
  985. experience: 2
  986. '120':
  987. income: 1.5
  988. points: 1.5
  989. experience: 2
  990. '123':
  991. income: 1.0
  992. points: 1.0
  993. experience: 2
  994. '126':
  995. income: 0.8
  996. points: 0.8
  997. experience: 2
  998. '128':
  999. income: 1.5
  1000. points: 1.5
  1001. experience: 2
  1002. '130':
  1003. income: 1.5
  1004. points: 1.5
  1005. experience: 2
  1006. '133':
  1007. income: 1.5
  1008. points: 1.5
  1009. experience: 2
  1010. '134':
  1011. income: 1.5
  1012. points: 1.5
  1013. experience: 2
  1014. '139':
  1015. income: 1.5
  1016. points: 1.5
  1017. experience: 2
  1018. '146':
  1019. income: 1.5
  1020. points: 1.5
  1021. experience: 2
  1022. '152':
  1023. income: 1.5
  1024. points: 1.5
  1025. experience: 2
  1026. '154':
  1027. income: 1.5
  1028. points: 1.5
  1029. experience: 2
  1030. '155':
  1031. income: 1.5
  1032. points: 1.5
  1033. experience: 2
  1034. '156':
  1035. income: 1.5
  1036. points: 1.5
  1037. experience: 2
  1038. '159':
  1039. income: 1.5
  1040. points: 1.5
  1041. experience: 2
  1042. '160':
  1043. income: 1.5
  1044. points: 1.5
  1045. experience: 2
  1046. '161':
  1047. income: 1.5
  1048. points: 1.5
  1049. experience: 2
  1050. '163':
  1051. income: 1.5
  1052. points: 1.5
  1053. experience: 2
  1054. '164':
  1055. income: 1.5
  1056. points: 1.5
  1057. experience: 2
  1058. '167':
  1059. income: 1.5
  1060. points: 1.5
  1061. experience: 2
  1062. '168':
  1063. income: 1.3
  1064. points: 1.3
  1065. experience: 1.9
  1066. '169':
  1067. income: 1.5
  1068. points: 1.5
  1069. experience: 2
  1070. '170':
  1071. income: 1.5
  1072. points: 1.5
  1073. experience: 2
  1074. '172':
  1075. income: 1.5
  1076. points: 1.5
  1077. experience: 2
  1078. '173':
  1079. income: 1.5
  1080. points: 1.5
  1081. experience: 2
  1082. '174':
  1083. income: 1.5
  1084. points: 1.5
  1085. experience: 2
  1086. '179':
  1087. income: 1.5
  1088. points: 1.5
  1089. experience: 2
  1090. '180':
  1091. income: 1.5
  1092. points: 1.5
  1093. experience: 2
  1094. '182':
  1095. income: 0.8
  1096. points: 0.8
  1097. experience: 2
  1098. '183':
  1099. income: 1.5
  1100. points: 1.5
  1101. experience: 2
  1102. '184':
  1103. income: 1.5
  1104. points: 1.5
  1105. experience: 2
  1106. '185':
  1107. income: 1.5
  1108. points: 1.5
  1109. experience: 2
  1110. '186':
  1111. income: 1.5
  1112. points: 1.5
  1113. experience: 2
  1114. '187':
  1115. income: 1.5
  1116. points: 1.5
  1117. experience: 2
  1118. '188':
  1119. income: 1.5
  1120. points: 1.5
  1121. experience: 2
  1122. '189':
  1123. income: 1.5
  1124. points: 1.5
  1125. experience: 2
  1126. '190':
  1127. income: 1.5
  1128. points: 1.5
  1129. experience: 2
  1130. '191':
  1131. income: 1.5
  1132. points: 1.5
  1133. experience: 2
  1134. '192':
  1135. income: 1.5
  1136. points: 1.5
  1137. experience: 2
  1138. '251':
  1139. income: 1.5
  1140. points: 1.5
  1141. experience: 2
  1142. custom-kill:
  1143. Slayer:
  1144. income: 10.0
  1145. points: 10.0
  1146. experience: 10.0
  1147. Digger:
  1148. fullname: Digger
  1149. shortname: D
  1150. description: Earns money for terraforming the world.
  1151. ChatColour: GOLD
  1152. chat-display: full
  1153. max-level: 100
  1154. #slots: 10
  1155. leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  1156. income-progression-equation: baseincome+(baseincome*(joblevel-1)*0.02)-((baseincome+(joblevel-1)*0.01) * ((2)*0.05))
  1157. points-progression-equation: basepoints+(basepoints*(joblevel-1)*0.01)-((basepoints+(joblevel-1)*0.01) * ((3-1)*0.05))
  1158. experience-progression-equation: baseexperience-(baseexperience*(2 *0.01))
  1159. rejoinCooldown: 10
  1160. cmd-on-leave:
  1161. - "lp user [player] set potions.speed false"
  1162. - "lp user [player] set mcmmo.perks.xp.customboost.excavation false"
  1163. commands:
  1164. tag:
  1165. command: lp user [player] set deluxetags.tag.digger
  1166. levelFrom: 25
  1167. levelUntil: 100
  1168. tagalert:
  1169. command: /tellraw [player] ["",{"text":"[","color":"blue"},{"text":"JobTags","color":"dark_aqua"},{"text":"]","color":"blue"},{"text":" You can now use the tag for ","color":"aqua"},{"text":"Digger","bold":true,"color":"aqua"},{"text":"!","color":"aqua"}]
  1170. levelFrom: 25
  1171. levelUntil: 25
  1172. perk25:
  1173. command: lp user [player] set mcmmo.perks.xp.customboost.excavation
  1174. levelFrom: 25
  1175. levelUntil: 50
  1176. perk50:
  1177. command: lp user [player] set potions.speed
  1178. levelFrom: 50
  1179. levelUntil: 50
  1180. Gui:
  1181. Id: 269
  1182. Data: 0
  1183. Break:
  1184. '179':
  1185. income: 0.75
  1186. points: 1
  1187. experience: 0.75
  1188. DIRT:
  1189. income: 0.15
  1190. points: 0.25
  1191. experience: 0.15
  1192. GRASS:
  1193. income: 0.25
  1194. points: 0.3
  1195. experience: 0.25
  1196. GRAVEL:
  1197. income: 0.75
  1198. points: 1
  1199. experience: 1.0
  1200. SAND:
  1201. income: 0.3
  1202. points: 0.4
  1203. experience: 0.3
  1204. CLAY:
  1205. income: 0.75
  1206. points: 1
  1207. experience: 0.75
  1208. '159':
  1209. income: 0.75
  1210. points: 1
  1211. experience: 0.75
  1212. custom-kill:
  1213. Slayer:
  1214. income: 10.0
  1215. points: 10.0
  1216. experience: 10.0
  1217. Farmer:
  1218. fullname: Farmer
  1219. shortname: Fa
  1220. description: Earns money farming crops & raising animals.
  1221. ChatColour: BLUE
  1222. chat-display: full
  1223. max-level: 100
  1224. #slots: 10
  1225. leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  1226. income-progression-equation: baseincome+(baseincome*(joblevel-1)*0.02)-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1227. points-progression-equation: basepoints+(basepoints*(joblevel-1)*0.01)-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1228. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  1229. rejoinCooldown: 10
  1230. cmd-on-leave:
  1231. - "lp user [player] set cmi.command.condense false"
  1232. - "lp user [player] set eggcatcher.catch.* false"
  1233. commands:
  1234. tag:
  1235. command: lp user [player] set deluxetags.tag.farmer
  1236. levelFrom: 25
  1237. levelUntil: 100
  1238. tagalert:
  1239. command: /tellraw [player] ["",{"text":"[","color":"blue"},{"text":"JobTags","color":"dark_aqua"},{"text":"]","color":"blue"},{"text":" You can now use the tag for ","color":"aqua"},{"text":"Farmer","bold":true,"color":"aqua"},{"text":"!","color":"aqua"}]
  1240. levelFrom: 25
  1241. levelUntil: 25
  1242. perk25:
  1243. command: lp user [player] set cmi.command.condense
  1244. levelFrom: 25
  1245. levelUntil: 50
  1246. perk50:
  1247. command: lp user [player] set eggcatcher.catch.*
  1248. levelFrom: 50
  1249. levelUntil: 60
  1250. Gui:
  1251. Id: 338
  1252. Data: 0
  1253. Tame:
  1254. Wolf:
  1255. income: 5.0
  1256. points: 5.0
  1257. experience: 5.0
  1258. Horse:
  1259. income: 5.0
  1260. points: 5.0
  1261. experience: 5.0
  1262. Breed:
  1263. Wolf:
  1264. income: 2.0
  1265. points: 4.0
  1266. experience: 1.0
  1267. Ocelot:
  1268. income: 2.0
  1269. points: 4.0
  1270. experience: 51.0
  1271. Pig:
  1272. income: 2.0
  1273. points: 4.0
  1274. experience: 1.0
  1275. Cow:
  1276. income: 2.0
  1277. points: 4.0
  1278. experience: 1.0
  1279. Horse:
  1280. income: 3.0
  1281. points: 4.0
  1282. experience: 1.0
  1283. Rabbit:
  1284. income: 1.0
  1285. points: 4.0
  1286. experience: 1.0
  1287. Sheep:
  1288. income: 2.0
  1289. points: 4.0
  1290. experience: 1.0
  1291. Chicken:
  1292. income: 1.0
  1293. points: 4.0
  1294. experience: 1.0
  1295. Shear:
  1296. Red:
  1297. income: 1.0
  1298. points: 1.0
  1299. experience: 1.0
  1300. Orange:
  1301. income: 1.0
  1302. points: 1.0
  1303. experience: 1.0
  1304. Yellow:
  1305. income: 1.0
  1306. points: 1.0
  1307. experience: 1.0
  1308. Green:
  1309. income: 1.0
  1310. points: 1.0
  1311. experience: 1.0
  1312. Blue:
  1313. income: 1.0
  1314. points: 1.0
  1315. experience: 1.0
  1316. 'Light Blue':
  1317. income: 1.0
  1318. points: 1.0
  1319. experience: 1.0
  1320. Magenta:
  1321. income: 1.0
  1322. points: 1.0
  1323. experience: 1.0
  1324. Pink:
  1325. income: 1.0
  1326. points: 1.0
  1327. experience: 1.0
  1328. White:
  1329. income: 1.0
  1330. points: 1.0
  1331. experience: 1.0
  1332. 'Light Gray':
  1333. income: 1.0
  1334. points: 1.0
  1335. experience: 1.0
  1336. Black:
  1337. income: 1.0
  1338. points: 1.0
  1339. experience: 1.0
  1340. Brown:
  1341. income: 1.0
  1342. points: 1.0
  1343. experience: 1.0
  1344. Purple:
  1345. income: 1.0
  1346. points: 1.0
  1347. experience: 1.0
  1348. Cyan:
  1349. income: 1.0
  1350. points: 1.0
  1351. experience: 1.0
  1352. Gray:
  1353. income: 1.0
  1354. points: 1.0
  1355. experience: 1.0
  1356. 'Lime Green':
  1357. income: 1.0
  1358. points: 4.0
  1359. experience: 1.0
  1360. Kill:
  1361. Chicken:
  1362. income: 3.0
  1363. points: 5
  1364. experience: 3.0
  1365. Cow:
  1366. income: 7.0
  1367. points: 5
  1368. experience: 5.0
  1369. Pig:
  1370. income: 5.0
  1371. points: 5
  1372. experience: 5.0
  1373. Sheep:
  1374. income: 7.0
  1375. points: 5
  1376. experience: 5.0
  1377. MUSHROOM_COW:
  1378. income: 7.0
  1379. points: 5
  1380. experience: 5.0
  1381. RABBIT:
  1382. income: 2.0
  1383. points: 2
  1384. experience: 2.0
  1385. Milk:
  1386. Cow:
  1387. income: 7.0
  1388. points: 5.0
  1389. experience: 7.0
  1390. Break:
  1391. CHORUS_PLANT:
  1392. income: 1.5
  1393. points: 1.5
  1394. experience: 3.0
  1395. CHORUS_FLOWER:
  1396. income: 1.5
  1397. points: 1.5
  1398. experience: 3.0
  1399. BEETROOT_BLOCK-3:
  1400. income: 1.5
  1401. points: 1.5
  1402. experience: 3.0
  1403. CROPS-7:
  1404. income: 1.5
  1405. points: 1.5
  1406. experience: 3.0
  1407. CARROTS-7:
  1408. income: 1.0
  1409. points: 1.0
  1410. experience: 1.0
  1411. POTATOES-7:
  1412. income: 1.0
  1413. points: 1.0
  1414. experience: 1.0
  1415. PUMPKIN:
  1416. income: 0.35
  1417. points: 0.5
  1418. experience: 0.35
  1419. 103:
  1420. income: 0.28
  1421. experience: 0.28
  1422. SUGAR_CANE_BLOCK:
  1423. income: 0.2
  1424. points: 0.2
  1425. experience: 0.2
  1426. COCOA-2:
  1427. income: 2.0
  1428. points: 4
  1429. experience: 1.75
  1430. '6':
  1431. income: 2
  1432. points: 2
  1433. experience: 2.0
  1434. '111':
  1435. income: 2
  1436. points: 2
  1437. experience: 2.0
  1438. '37':
  1439. income: 2
  1440. points: 2
  1441. experience: 2.0
  1442. '38':
  1443. income: 2
  1444. points: 2
  1445. experience: 2.0
  1446. '39':
  1447. income: 1
  1448. points: 1
  1449. experience: 1.0
  1450. '40':
  1451. income: 1
  1452. points: 1
  1453. experience: 1.0
  1454. '106':
  1455. income: 1
  1456. points: 1
  1457. experience: 1.0
  1458. '81':
  1459. income: 1
  1460. points: 1
  1461. experience: 1.0
  1462. '115':
  1463. income: 1
  1464. points: 1
  1465. experience: 1.0
  1466. custom-kill:
  1467. Slayer:
  1468. income: 10.0
  1469. points: 10.0
  1470. experience: 10.0
  1471. Slayer:
  1472. fullname: Slayer
  1473. shortname: S
  1474. description: Earns money killing monsters and people.
  1475. ChatColour: RED
  1476. chat-display: full
  1477. max-level: 100
  1478. #slots: 10
  1479. leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  1480. income-progression-equation: baseincome+(baseincome*(joblevel-1)*0.02)-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1481. points-progression-equation: basepoints+(basepoints*(joblevel-1)*0.01)-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1482. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  1483. rejoinCooldown: 10
  1484. cmd-on-leave:
  1485. - "lp user [player] parent remove slayer25"
  1486. commands:
  1487. tag:
  1488. command: lp user [player] set deluxetags.tag.slayer
  1489. levelFrom: 25
  1490. levelUntil: 100
  1491. tagalert:
  1492. command: /tellraw [player] ["",{"text":"[","color":"blue"},{"text":"JobTags","color":"dark_aqua"},{"text":"]","color":"blue"},{"text":" You can now use the tag for ","color":"aqua"},{"text":"Slayer","bold":true,"color":"aqua"},{"text":"!","color":"aqua"}]
  1493. levelFrom: 25
  1494. levelUntil: 25
  1495. perk25:
  1496. command: pp user [player] parent add slayer25
  1497. levelFrom: 25
  1498. levelUntil: 50
  1499. Gui:
  1500. Id: 261
  1501. Data: 0
  1502. Tame:
  1503. Wolf:
  1504. income: 15.0
  1505. experience: 15.0
  1506. Kill:
  1507. Wolf:
  1508. income: 10.0
  1509. points: 10
  1510. experience: 5.0
  1511. Creeper:
  1512. income: 15.0
  1513. points: 15
  1514. experience: 15.0
  1515. Skeleton:
  1516. income: 10.0
  1517. points: 10
  1518. experience: 15.0
  1519. Spider:
  1520. income: 10.0
  1521. points: 10
  1522. experience: 15.0
  1523. Zombie:
  1524. income: 10.0
  1525. points: 10
  1526. experience: 15.0
  1527. BLAZE:
  1528. income: 20.0
  1529. points: 20
  1530. experience: 15.0
  1531. CAVE_SPIDER:
  1532. income: 20.0
  1533. points: 20
  1534. experience: 15.0
  1535. ENDERMAN:
  1536. income: 2.0
  1537. points: 2
  1538. experience: 2.0
  1539. GHAST:
  1540. income: 30.0
  1541. points: 30
  1542. experience: 30.0
  1543. GIANT:
  1544. income: 250.0
  1545. points: 250
  1546. experience: 100.0
  1547. IRON_GOLEM:
  1548. income: 30.0
  1549. points: 30
  1550. experience: 30.0
  1551. PIG_ZOMBIE:
  1552. income: 5.0
  1553. points: 5
  1554. experience: 5.0
  1555. SILVERFISH:
  1556. income: 3.0
  1557. points: 3
  1558. experience: 5.0
  1559. SNOWMAN:
  1560. income: 2.0
  1561. points: 2
  1562. experience: 4.0
  1563. SQUID:
  1564. income: 2.0
  1565. points: 2
  1566. experience: 2.0
  1567. GUARDIAN:
  1568. income: 2.0
  1569. points: 2
  1570. experience: 2.0
  1571. SHULKER:
  1572. income: 5.0
  1573. points: 5
  1574. experience: 5.0
  1575. WITHER:
  1576. income: 50.0
  1577. points: 50
  1578. experience: 120.0
  1579. ENDER_DRAGON:
  1580. income: 2000.0
  1581. points: 2000
  1582. experience: 2000.0
  1583. Player:
  1584. income: 15.0
  1585. points: 9
  1586. experience: 15.0
  1587. custom-kill:
  1588. Slayer:
  1589. income: 20.0
  1590. points: 10.0
  1591. experience: 20.0
  1592. Explorer:
  1593. fullname: Explorer
  1594. shortname: Ex
  1595. description: Earns money from being one of the first to a new chunk!
  1596. ChatColour: AQUA
  1597. chat-display: full
  1598. max-level: 100
  1599. #slots: 10
  1600. leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  1601. income-progression-equation: baseincome+(baseincome*(joblevel-1)*0.02)-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1602. points-progression-equation: basepoints+(basepoints*(joblevel-1)*0.01)-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1603. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  1604. rejoinCooldown: 10
  1605. cmd-on-leave:
  1606. - "lp user [player] parent remove explorer25"
  1607. commands:
  1608. tag:
  1609. command: lp user [player] set deluxetags.tag.explorer
  1610. levelFrom: 25
  1611. levelUntil: 100
  1612. tagalert:
  1613. command: /tellraw [player] ["",{"text":"[","color":"blue"},{"text":"JobTags","color":"dark_aqua"},{"text":"]","color":"blue"},{"text":" You can now use the tag for ","color":"aqua"},{"text":"Explorer","bold":true,"color":"aqua"},{"text":"!","color":"aqua"}]
  1614. levelFrom: 25
  1615. levelUntil: 25
  1616. 25perk:
  1617. command: lp user [player] parent add explorer25
  1618. levelFrom: 25
  1619. levelUntil: 50
  1620. Gui:
  1621. Id: 301
  1622. Data: 0
  1623. Explore:
  1624. 1:
  1625. income: 5.0
  1626. points: 5
  1627. experience: 5.0
  1628. 2:
  1629. income: 2.5
  1630. points: 2.5
  1631. experience: 2.5
  1632. 3:
  1633. income: 1.0
  1634. points: 1.0
  1635. experience: 1.0
  1636. 4:
  1637. income: 0.5
  1638. points: 0.5
  1639. experience: 0.5
  1640. 5:
  1641. income: 0.1
  1642. points: 0.1
  1643. experience: 0.1
  1644. custom-kill:
  1645. Slayer:
  1646. income: 10.0
  1647. points: 10.0
  1648. experience: 10.0
  1649. Crafter:
  1650. fullname: Crafter
  1651. shortname: Cr
  1652. description: Earns money from crafting items.
  1653. ChatColour: RED
  1654. chat-display: full
  1655. max-level: 100
  1656. #slots: 10
  1657. leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  1658. income-progression-equation: baseincome+(baseincome*(joblevel-1)*0.022)-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1659. points-progression-equation: basepoints+(basepoints*(joblevel-1)*0.01)-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1660. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  1661. rejoinCooldown: 10
  1662. cmd-on-leave:
  1663. - "lp user [player] parent remove craft25"
  1664. - "lp user [player] set uncrafter.command"
  1665. commands:
  1666. tag:
  1667. command: lp user [player] set deluxetags.tag.crafter
  1668. levelFrom: 25
  1669. levelUntil: 100
  1670. tagalert:
  1671. command: /tellraw [player] ["",{"text":"[","color":"blue"},{"text":"JobTags","color":"dark_aqua"},{"text":"]","color":"blue"},{"text":" You can now use the tag for ","color":"aqua"},{"text":"Crafter","bold":true,"color":"aqua"},{"text":"!","color":"aqua"}]
  1672. levelFrom: 25
  1673. levelUntil: 25
  1674. perk25:
  1675. command: lp user [player] parent add craft25
  1676. levelFrom: 25
  1677. levelUntil: 50
  1678. perk50:
  1679. command: pp user [player] uncrafter.command
  1680. levelFrom: 50
  1681. levelUntil: 50
  1682. Gui:
  1683. Id: 58
  1684. Data: 0
  1685. Craft:
  1686. '280':
  1687. income: 0.1
  1688. points: 0.1
  1689. experience: 0.1
  1690. '23':
  1691. income: 4.0
  1692. points: 4.0
  1693. experience: 4.0
  1694. '25':
  1695. income: 1.5
  1696. points: 1.5
  1697. experience: 3.0
  1698. '27':
  1699. income: 5.0
  1700. points: 5
  1701. experience: 5.0
  1702. '28':
  1703. income: 5.0
  1704. points: 4.0
  1705. experience: 5.0
  1706. '29':
  1707. income: 3.0
  1708. points: 3.0
  1709. experience: 3.0
  1710. 'tnt':
  1711. income: 4.0
  1712. points: 4.0
  1713. experience: 4.0
  1714. 'chest':
  1715. income: 1.3
  1716. points: 1.3
  1717. experience: 1.3
  1718. '58':
  1719. income: 0.7
  1720. points: 0.7
  1721. experience: 1.0
  1722. '61':
  1723. income: 1.0
  1724. points: 1.0
  1725. experience: 1.0
  1726. '65':
  1727. income: 0.1
  1728. points: 0.1
  1729. experience: 0.1
  1730. '66':
  1731. income: 1.1
  1732. points: 1.0
  1733. experience: 1.1
  1734. '84':
  1735. income: 10.0
  1736. points: 10.0
  1737. experience: 20.0
  1738. '95':
  1739. income: 0.3
  1740. points: 0.3
  1741. experience: 0.3
  1742. '108':
  1743. income: 2.5
  1744. points: 2.5
  1745. experience: 3.0
  1746. '109':
  1747. income: 0.5
  1748. points: 0.5
  1749. experience: 0.5
  1750. '116':
  1751. income: 30.0
  1752. points: 30.0
  1753. experience: 40.0
  1754. '138':
  1755. income: 100.0
  1756. points: 100.0
  1757. experience: 300.0
  1758. '145':
  1759. income: 20.0
  1760. points: 20.0
  1761. experience: 25.0
  1762. '146':
  1763. income: 1.5
  1764. points: 1.5
  1765. experience: 1.5
  1766. '147':
  1767. income: 3.0
  1768. points: 3.0
  1769. experience: 3.0
  1770. '148':
  1771. income: 2.5
  1772. points: 2.5
  1773. experience: 2.5
  1774. '151':
  1775. income: 2.5
  1776. points: 2.5
  1777. experience: 2.5
  1778. 'hopper':
  1779. income: 7.0
  1780. points: 7.0
  1781. experience: 7.0
  1782. '157':
  1783. income: 4.0
  1784. points: 4.0
  1785. experience: 4.0
  1786. '158':
  1787. income: 2.0
  1788. points: 2.0
  1789. experience: 3.0
  1790. '159':
  1791. income: 1.5
  1792. points: 1.5
  1793. experience: 1.5
  1794. '160':
  1795. income: 0.2
  1796. points: 0.2
  1797. experience: 0.2
  1798. '165':
  1799. income: 1.0
  1800. points: 1.0
  1801. experience: 1.0
  1802. '168':
  1803. income: 3.0
  1804. points: 3.0
  1805. experience: 3.0
  1806. '169':
  1807. income: 10.0
  1808. points: 10.0
  1809. experience: 10.0
  1810. '183':
  1811. income: 0.5
  1812. points: 0.5
  1813. experience: 0.5
  1814. '184':
  1815. income: 0.5
  1816. points: 0.5
  1817. experience: 0.5
  1818. '185':
  1819. income: 0.5
  1820. points: 0.5
  1821. experience: 0.5
  1822. '186':
  1823. income: 0.5
  1824. points: 0.5
  1825. experience: 0.5
  1826. '187':
  1827. income: 0.5
  1828. points: 0.5
  1829. experience: 0.5
  1830. '188':
  1831. income: 0.5
  1832. points: 0.5
  1833. experience: 0.5
  1834. '189':
  1835. income: 0.5
  1836. points: 0.5
  1837. experience: 0.5
  1838. '190':
  1839. income: 0.5
  1840. points: 0.5
  1841. experience: 0.5
  1842. '191':
  1843. income: 0.5
  1844. points: 0.5
  1845. experience: 0.5
  1846. '192':
  1847. income: 0.5
  1848. points: 0.5
  1849. experience: 0.5
  1850. '324':
  1851. income: 0.5
  1852. points: 0.5
  1853. experience: 0.5
  1854. '330':
  1855. income: 8.0
  1856. points: 8.0
  1857. experience: 8.0
  1858. '340':
  1859. income: 1.0
  1860. points: 1.0
  1861. experience: 1.0
  1862. '345':
  1863. income: 4.0
  1864. points: 4.0
  1865. experience: 7.0
  1866. '347':
  1867. income: 7.0
  1868. points: 7.0
  1869. experience: 7.0
  1870. '355':
  1871. income: 3.0
  1872. points: 3.0
  1873. experience: 3.0
  1874. '379':
  1875. income: 2.8
  1876. points: 2.8
  1877. experience: 3.5
  1878. '380':
  1879. income: 7.0
  1880. points: 7.0
  1881. experience: 7.0
  1882. '427':
  1883. income: 0.15
  1884. points: 0.15
  1885. experience: 0.15
  1886. '428':
  1887. income: 0.15
  1888. points: 0.15
  1889. experience: 0.15
  1890. '429':
  1891. income: 0.15
  1892. points: 0.15
  1893. experience: 0.15
  1894. '430':
  1895. income: 0.15
  1896. points: 0.15
  1897. experience: 0.15
  1898. '431':
  1899. income: 0.15
  1900. points: 0.15
  1901. experience: 0.15
  1902. custom-kill:
  1903. Slayer:
  1904. income: 10.0
  1905. points: 10.0
  1906. experience: 10.0
  1907. Fisherman:
  1908. fullname: Fisherman
  1909. shortname: Fi
  1910. description: Earns money from fishing.
  1911. ChatColour: AQUA
  1912. chat-display: full
  1913. max-level: 100
  1914. #slots: 10
  1915. leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  1916. income-progression-equation: baseincome+(baseincome*(joblevel-1)*0.02)-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1917. points-progression-equation: basepoints+(basepoints*(joblevel-1)*0.01)-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1918. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  1919. rejoinCooldown: 10
  1920. cmd-on-leave:
  1921. - "lp user [player] set mcmmo.perks.xp.customboost.fishing"
  1922. - "lp user [player] set customfishing.moneypouch"
  1923. commands:
  1924. tag:
  1925. command: lp user [player] set deluxetags.tag.fisherman
  1926. levelFrom: 25
  1927. levelUntil: 100
  1928. tagalert:
  1929. command: /tellraw [player] ["",{"text":"[","color":"blue"},{"text":"JobTags","color":"dark_aqua"},{"text":"]","color":"blue"},{"text":" You can now use the tag for ","color":"aqua"},{"text":"Fisherman","bold":true,"color":"aqua"},{"text":"!","color":"aqua"}]
  1930. levelFrom: 25
  1931. levelUntil: 25
  1932. perk25:
  1933. command: lp user [player] set mcmmo.perks.xp.customboost.fishing
  1934. levelFrom: 25
  1935. levelUntil: 25
  1936. perk25:
  1937. command: lp user [player] set customfishing.moneypouch
  1938. levelFrom: 50
  1939. levelUntil: 50
  1940. Gui:
  1941. Id: 346
  1942. Data: 0
  1943. Fish:
  1944. '349-0':
  1945. income: 7.5
  1946. points: 15.0
  1947. experience: 8.0
  1948. '349-1':
  1949. income: 10.0
  1950. points: 20.0
  1951. experience: 10.0
  1952. '349-2':
  1953. income: 10.0
  1954. points: 25.0
  1955. experience: 10.0
  1956. '349-3':
  1957. income: 10.0
  1958. points: 25.0
  1959. experience: 10.0
  1960. custom-kill:
  1961. Slayer:
  1962. income: 10.0
  1963. points: 10.0
  1964. experience: 10.0
  1965. Blacksmith:
  1966. fullname: Blacksmith
  1967. shortname: Bs
  1968. description: Earns money from crafting and repairing weapons & armor.
  1969. ChatColour: DARK_PURPLE
  1970. chat-display: full
  1971. max-level: 100
  1972. #slots: 10
  1973. leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  1974. income-progression-equation: baseincome+(baseincome*(joblevel-1)*0.02)-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1975. points-progression-equation: basepoints+(basepoints*(joblevel-1)*0.01)-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1976. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  1977. rejoinCooldown: 10
  1978. cmd-on-leave:
  1979. - "lp user [player] parent remove smith25"
  1980. commands:
  1981. tag:
  1982. command: lp user [player] set deluxetags.tag.blacksmith
  1983. levelFrom: 25
  1984. levelUntil: 100
  1985. tagalert:
  1986. command: /tellraw [player] ["",{"text":"[","color":"blue"},{"text":"JobTags","color":"dark_aqua"},{"text":"]","color":"blue"},{"text":" You can now use the tag for ","color":"aqua"},{"text":"Blacksmith","bold":true,"color":"aqua"},{"text":"!","color":"aqua"}]
  1987. levelFrom: 25
  1988. levelUntil: 25
  1989. perk25:
  1990. command: lp user [player] parent add smith25
  1991. levelFrom: 25
  1992. levelUntil: 50
  1993. Gui:
  1994. Id: 145
  1995. Data: 0
  1996. Craft:
  1997. WOOD_SWORD:
  1998. income: 1.0
  1999. points: 1.0
  2000. experience: 2.0
  2001. LEATHER_BOOTS:
  2002. income: 3.0
  2003. points: 3.0
  2004. experience: 4.0
  2005. LEATHER_CHESTPLATE:
  2006. income: 4.0
  2007. points: 4.0
  2008. experience: 8.0
  2009. LEATHER_HELMET:
  2010. income: 2.5
  2011. points: 2.5
  2012. experience: 5.0
  2013. LEATHER_LEGGINGS:
  2014. income: 3.5
  2015. points: 3.5
  2016. experience: 7.0
  2017. IRON_SWORD:
  2018. income: 4.0
  2019. points: 4.0
  2020. experience: 8.0
  2021. IRON_BOOTS:
  2022. income: 8.0
  2023. points: 8.0
  2024. experience: 16.0
  2025. IRON_CHESTPLATE:
  2026. income: 16.0
  2027. points: 16.0
  2028. experience: 32.0
  2029. IRON_HELMET:
  2030. income: 10.0
  2031. points: 10.0
  2032. experience: 20.0
  2033. IRON_LEGGINGS:
  2034. income: 14.0
  2035. points: 14.0
  2036. experience: 28.0
  2037. GOLD_SWORD:
  2038. income: 6.0
  2039. points: 6.0
  2040. experience: 12.0
  2041. GOLD_BOOTS:
  2042. income: 12.0
  2043. points: 12.0
  2044. experience: 24.0
  2045. GOLD_CHESTPLATE:
  2046. income: 24.0
  2047. points: 24.0
  2048. experience: 48.0
  2049. GOLD_HELMET:
  2050. income: 15.0
  2051. points: 15.0
  2052. experience: 30.0
  2053. GOLD_LEGGINGS:
  2054. income: 21.0
  2055. points: 21.0
  2056. experience: 42.0
  2057. DIAMOND_SWORD:
  2058. income: 8.0
  2059. points: 8.0
  2060. experience: 16.0
  2061. DIAMOND_PICKAXE:
  2062. income: 12.0
  2063. points: 12.0
  2064. experience: 24.0
  2065. DIAMOND_AXE:
  2066. income: 12.0
  2067. points: 12.0
  2068. experience: 24.0
  2069. DIAMOND_HELMET:
  2070. income: 20.0
  2071. points: 20.0
  2072. experience: 40.0
  2073. DIAMOND_CHESTPLATE:
  2074. income: 32.0
  2075. points: 32.0
  2076. experience: 64.0
  2077. DIAMOND_LEGGINGS:
  2078. income: 28.0
  2079. points: 28.0
  2080. experience: 40.0
  2081. DIAMOND_BOOTS:
  2082. income: 16.0
  2083. points: 16.0
  2084. experience: 32.0
  2085. Repair:
  2086. WOOD_SWORD:
  2087. income: 1.0
  2088. points: 1.0
  2089. experience: 1.0
  2090. IRON_SWORD:
  2091. income: 2.0
  2092. points: 2.0
  2093. experience: 2.0
  2094. GOLD_SWORD:
  2095. income: 3.0
  2096. points: 3.0
  2097. experience: 3.0
  2098. DIAMOND_SWORD:
  2099. income: 4.0
  2100. points: 4.0
  2101. experience: 4.0
  2102. WOOD_PICKAXE:
  2103. income: 1.0
  2104. points: 1.0
  2105. experience: 1.0
  2106. IRON_PICKAXE:
  2107. income: 2.0
  2108. points: 2.0
  2109. experience: 2.0
  2110. GOLD_PICKAXE:
  2111. income: 3.0
  2112. points: 3.0
  2113. experience: 3.0
  2114. DIAMOND_PICKAXE:
  2115. income: 4.0
  2116. points: 4.0
  2117. experience: 4.0
  2118. WOOD_AXE:
  2119. income: 1.0
  2120. points: 1.0
  2121. experience: 1.0
  2122. IRON_AXE:
  2123. income: 2.0
  2124. points: 2.0
  2125. experience: 2.0
  2126. GOLD_AXE:
  2127. income: 3.0
  2128. points: 3.0
  2129. experience: 3.0
  2130. DIAMOND_AXE:
  2131. income: 4.0
  2132. points: 4.0
  2133. experience: 4.0
  2134. Smelt:
  2135. IRON_INGOT:
  2136. income: 1.3
  2137. points: 1.3
  2138. experience: 2.0
  2139. GOLD_INGOT:
  2140. income: 5.0
  2141. points: 5.0
  2142. experience: 10
  2143. custom-kill:
  2144. Slayer:
  2145. income: 10.0
  2146. points: 10.0
  2147. experience: 10.0
  2148. Brewer:
  2149. fullname: Brewer
  2150. shortname: Br
  2151. description: Earns money brewing potions.
  2152. ChatColour: LIGHT_PURPLE
  2153. chat-display: full
  2154. max-level: 100
  2155. leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  2156. income-progression-equation: baseincome+(baseincome*(joblevel-1)*0.02)-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  2157. points-progression-equation: basepoints+(basepoints*(joblevel-1)*0.01)-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  2158. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  2159. rejoinCooldown: 10
  2160. cmd-on-leave:
  2161. - "lp user [player] set mcmmo.perks.xp.customboost.alchemy false"
  2162. - "lp user [player] set cmi.kit.ghastegg false"
  2163. - "lp user [player] set cmi.damagecontrol.lesspoison false"
  2164. - "lp user [player] set potions.milk false"
  2165. commands:
  2166. tag:
  2167. command: lp user [player] set deluxetags.tag.brewer
  2168. levelFrom: 25
  2169. levelUntil: 100
  2170. tagalert:
  2171. command: /tellraw [player] ["",{"text":"[","color":"blue"},{"text":"JobTags","color":"dark_aqua"},{"text":"]","color":"blue"},{"text":" You can now use the tag for ","color":"aqua"},{"text":"Brewer","bold":true,"color":"aqua"},{"text":"!","color":"aqua"}]
  2172. levelFrom: 25
  2173. levelUntil: 25
  2174. perk25:
  2175. command: lp user [player] set mcmmo.perks.xp.customboost.alchemy
  2176. levelFrom: 25
  2177. levelUntil: 50
  2178. perk50:
  2179. command: lp user [player] set cmi.kit.ghastegg
  2180. levelFrom: 50
  2181. levelUntil: 50
  2182. perk75a:
  2183. command: lp user [player] set cmi.damagecontrol.lesspoison
  2184. levelFrom: 75
  2185. levelUntil: 75
  2186. perk75b:
  2187. command: lp user [player] set potions.milk
  2188. levelFrom: 75
  2189. levelUntil: 75
  2190. Gui:
  2191. Id: 379
  2192. Data: 0
  2193. Brew:
  2194. NETHER_STALK:
  2195. income: 6.0
  2196. points: 6.0
  2197. experience: 6.0
  2198. REDSTONE:
  2199. income: 6.0
  2200. points: 6.0
  2201. experience: 6.0
  2202. GLOWSTONE_DUST:
  2203. income: 8.0
  2204. points: 8.0
  2205. experience: 8.0
  2206. SPIDER_EYE:
  2207. income: 9.0
  2208. points: 9.0
  2209. experience: 9.0
  2210. FERMENTED_SPIDER_EYE:
  2211. income: 12.0
  2212. points: 12.0
  2213. experience: 12.0
  2214. BLAZE_POWDER:
  2215. income: 12.0
  2216. points: 12.0
  2217. experience: 12.0
  2218. SUGAR:
  2219. income: 7.0
  2220. points: 7.0
  2221. experience: 7.0
  2222. SPECKLED_MELON:
  2223. income: 10.0
  2224. points: 10.0
  2225. experience: 10.0
  2226. MAGMA_CREAM:
  2227. income: 12.0
  2228. points: 12.0
  2229. experience: 12.0
  2230. GHAST_TEAR:
  2231. income: 22.0
  2232. points: 22.0
  2233. experience: 22.0
  2234. GOLDEN_CARROT:
  2235. income: 14.0
  2236. points: 14.0
  2237. experience: 14.0
  2238. 349-3:
  2239. income: 14.0
  2240. points: 14.0
  2241. experience: 14.0
  2242. RABBIT_FOOT:
  2243. income: 18.0
  2244. points: 18.0
  2245. experience: 18.0
  2246. custom-kill:
  2247. Slayer:
  2248. income: 10.0
  2249. points: 10.0
  2250. experience: 10.0
  2251. Enchanter:
  2252. fullname: Enchanter
  2253. shortname: E
  2254. description: Earns money enchanting weapons.
  2255. ChatColour: DARK_BLUE
  2256. chat-display: full
  2257. max-level: 100
  2258. #slots: 10
  2259. leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  2260. income-progression-equation: baseincome+(baseincome*(joblevel-1)*0.02)-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  2261. points-progression-equation: basepoints+(basepoints*(joblevel-1)*0.01)-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  2262. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  2263. rejoinCooldown: 10
  2264. cmd-on-leave:
  2265. - "lp user [player] parent remove enchanter25"
  2266. - "lp user [player] set xpmultiplier.2 false"
  2267. commands:
  2268. tag:
  2269. command: lp user [player] set deluxetags.tag.enchanter
  2270. levelFrom: 25
  2271. levelUntil: 25
  2272. tagalert:
  2273. command: /tellraw [player] ["",{"text":"[","color":"blue"},{"text":"JobTags","color":"dark_aqua"},{"text":"]","color":"blue"},{"text":" You can now use the tag for ","color":"aqua"},{"text":"Enchanter","bold":true,"color":"aqua"},{"text":"!","color":"aqua"}]
  2274. levelFrom: 25
  2275. levelUntil: 25
  2276. perk25:
  2277. command: lp user [player] parent add enchanter25
  2278. levelFrom: 25
  2279. levelUntil: 25
  2280. perk50:
  2281. command: lp user [player] set xpmultiplier.2
  2282. levelFrom: 50
  2283. levelUntil: 50
  2284. Gui:
  2285. Id: 116
  2286. Data: 0
  2287. Enchant:
  2288. WOOD_SWORD:
  2289. income: 1.5
  2290. points: 1.5
  2291. experience: 3.0
  2292. LEATHER_BOOTS:
  2293. income: 1.0
  2294. points: 1.0
  2295. experience: 6.0
  2296. LEATHER_CHESTPLATE:
  2297. income: 2.0
  2298. points: 2.0
  2299. experience: 6.0
  2300. LEATHER_HELMET:
  2301. income: 1.0
  2302. points: 1.0
  2303. experience: 6.0
  2304. LEATHER_LEGGINGS:
  2305. income: 2.0
  2306. points: 2.0
  2307. experience: 6.0
  2308. IRON_SWORD:
  2309. income: 3.0
  2310. points: 3.0
  2311. experience: 6.0
  2312. IRON_BOOTS:
  2313. income: 2.5
  2314. points: 2.5
  2315. experience: 9.0
  2316. IRON_CHESTPLATE:
  2317. income: 4.5
  2318. points: 4.5
  2319. experience: 9.0
  2320. IRON_HELMET:
  2321. income: 2.5
  2322. points: 2.5
  2323. experience: 9.0
  2324. IRON_LEGGINGS:
  2325. income: 4.5
  2326. points: 4.5
  2327. experience: 9.0
  2328. GOLD_SWORD:
  2329. income: 4.5
  2330. points: 4.5
  2331. experience: 15.0
  2332. GOLD_BOOTS:
  2333. income: 2.5
  2334. points: 2.5
  2335. experience: 15.0
  2336. GOLD_CHESTPLATE:
  2337. income: 5.5
  2338. points: 5.5
  2339. experience: 15.0
  2340. GOLD_HELMET:
  2341. income: 2.5
  2342. points: 2.5
  2343. experience: 15.0
  2344. GOLD_LEGGINGS:
  2345. income: 5.5
  2346. points: 5.5
  2347. experience: 15.0
  2348. DIAMOND_SWORD:
  2349. income: 9.0
  2350. points: 9.0
  2351. experience: 30.0
  2352. DIAMOND_SPADE:
  2353. income: 5.0
  2354. points: 5.0
  2355. experience: 30.0
  2356. DIAMOND_PICKAXE:
  2357. income: 10.0
  2358. points: 10.0
  2359. experience: 30.0
  2360. DIAMOND_AXE:
  2361. income: 10.0
  2362. points: 10.0
  2363. experience: 30.0
  2364. DIAMOND_HELMET:
  2365. income: 6.0
  2366. points: 6.0
  2367. experience: 30.0
  2368. DIAMOND_CHESTPLATE:
  2369. income: 12.0
  2370. points: 12.0
  2371. experience: 50.0
  2372. DIAMOND_LEGGINGS:
  2373. income: 12.0
  2374. points: 12.0
  2375. experience: 50.0
  2376. DIAMOND_BOOTS:
  2377. income: 6.0
  2378. points: 6.0
  2379. experience: 30.0
  2380. ARROW_DAMAGE-1:
  2381. income: 10.0
  2382. points: 10.0
  2383. experience: 10.0
  2384. ARROW_DAMAGE-2:
  2385. income: 20.0
  2386. points: 20.0
  2387. experience: 20.0
  2388. ARROW_DAMAGE-3:
  2389. income: 30.0
  2390. points: 30.0
  2391. experience: 30.0
  2392. ARROW_DAMAGE-4:
  2393. income: 40.0
  2394. points: 40.0
  2395. experience: 40.0
  2396. ARROW_DAMAGE-5:
  2397. income: 50.0
  2398. points: 50.0
  2399. experience: 50.0
  2400. ARROW_FIRE:
  2401. income: 10.0
  2402. points: 10.0
  2403. experience: 30.0
  2404. ARROW_INFINITE:
  2405. income: 20.0
  2406. points: 20.0
  2407. experience: 50.0
  2408. ARROW_KNOCKBACK-1:
  2409. income: 10.0
  2410. points: 10.0
  2411. experience: 10.0
  2412. ARROW_KNOCKBACK-2:
  2413. income: 20.0
  2414. points: 20.0
  2415. experience: 20.0
  2416. DAMAGE_ALL-1:
  2417. income: 10.0
  2418. points: 10.0
  2419. experience: 10.0
  2420. DAMAGE_ALL-2:
  2421. income: 20.0
  2422. points: 20.0
  2423. experience: 20.0
  2424. DAMAGE_ALL-3:
  2425. income: 30.0
  2426. points: 30.0
  2427. experience: 30.0
  2428. DAMAGE_ALL-4:
  2429. income: 40.0
  2430. points: 40.0
  2431. experience: 40.0
  2432. DAMAGE_ALL-5:
  2433. income: 50.0
  2434. points: 50.0
  2435. experience: 50.0
  2436. DAMAGE_ARTHROPODS-1:
  2437. income: 10.0
  2438. points: 10.0
  2439. experience: 10.0
  2440. DAMAGE_ARTHROPODS-2:
  2441. income: 20.0
  2442. points: 20.0
  2443. experience: 20.0
  2444. DAMAGE_ARTHROPODS-3:
  2445. income: 30.0
  2446. points: 30.0
  2447. experience: 30.0
  2448. DAMAGE_ARTHROPODS-4:
  2449. income: 40.0
  2450. points: 40.0
  2451. experience: 40.0
  2452. DAMAGE_ARTHROPODS-5:
  2453. income: 50.0
  2454. points: 50.0
  2455. experience: 50.0
  2456. DAMAGE_UNDEAD-1:
  2457. income: 10.0
  2458. points: 10.0
  2459. experience: 10.0
  2460. DAMAGE_UNDEAD-2:
  2461. income: 20.0
  2462. points: 20.0
  2463. experience: 20.0
  2464. DAMAGE_UNDEAD-3:
  2465. income: 30.0
  2466. points: 30.0
  2467. experience: 30.0
  2468. DAMAGE_UNDEAD-4:
  2469. income: 40.0
  2470. points: 40.0
  2471. experience: 40.0
  2472. DAMAGE_UNDEAD-5:
  2473. income: 50.0
  2474. points: 50.0
  2475. experience: 50.0
  2476. DEPTH_STRIDER-1:
  2477. income: 10.0
  2478. points: 10.0
  2479. experience: 10.0
  2480. DEPTH_STRIDER-2:
  2481. income: 20.0
  2482. points: 20.0
  2483. experience: 20.0
  2484. DEPTH_STRIDER-3:
  2485. income: 30.0
  2486. points: 30.0
  2487. experience: 30.0
  2488. DIG_SPEED-1:
  2489. income: 10.0
  2490. points: 10.0
  2491. experience: 10.0
  2492. DIG_SPEED-2:
  2493. income: 20.0
  2494. points: 20.0
  2495. experience: 20.0
  2496. DIG_SPEED-3:
  2497. income: 30.0
  2498. points: 30.0
  2499. experience: 30.0
  2500. DIG_SPEED-4:
  2501. income: 40.0
  2502. points: 40.0
  2503. experience: 40.0
  2504. DIG_SPEED-5:
  2505. income: 50.0
  2506. points: 50.0
  2507. experience: 50.0
  2508. DURABILITY-1:
  2509. income: 10.0
  2510. points: 10.0
  2511. experience: 10.0
  2512. DURABILITY-2:
  2513. income: 20.0
  2514. points: 20.0
  2515. experience: 20.0
  2516. DURABILITY-3:
  2517. income: 30.0
  2518. points: 30.0
  2519. experience: 30.0
  2520. FIRE_ASPECT-1:
  2521. income: 10.0
  2522. points: 10.0
  2523. experience: 10.0
  2524. FIRE_ASPECT-2:
  2525. income: 20.0
  2526. points: 20.0
  2527. experience: 20.0
  2528. KNOCKBACK-1:
  2529. income: 10.0
  2530. points: 10.0
  2531. experience: 10.0
  2532. KNOCKBACK-2:
  2533. income: 20.0
  2534. points: 20.0
  2535. experience: 20.0
  2536. LOOT_BONUS_BLOCKS-1:
  2537. income: 20.0
  2538. points: 20.0
  2539. experience: 100.0
  2540. LOOT_BONUS_BLOCKS-2:
  2541. income: 40.0
  2542. points: 40.0
  2543. experience: 200.0
  2544. LOOT_BONUS_BLOCKS-3:
  2545. income: 80.0
  2546. points: 80.0
  2547. experience: 300.0
  2548. LOOT_BONUS_MOBS-1:
  2549. income: 10.0
  2550. points: 10.0
  2551. experience: 20.0
  2552. LOOT_BONUS_MOBS-2:
  2553. income: 20.0
  2554. points: 20.0
  2555. experience: 40.0
  2556. LOOT_BONUS_MOBS-3:
  2557. income: 30.0
  2558. points: 30.0
  2559. experience: 60.0
  2560. LUCK-1:
  2561. income: 15.0
  2562. points: 15.0
  2563. experience: 10.0
  2564. LUCK-2:
  2565. income: 25.0
  2566. points: 25.0
  2567. experience: 20.0
  2568. LUCK-3:
  2569. income: 35.0
  2570. points: 35.0
  2571. experience: 30.0
  2572. LURE-1:
  2573. income: 10.0
  2574. points: 10.0
  2575. experience: 10.0
  2576. LURE-2:
  2577. income: 20.0
  2578. points: 20.0
  2579. experience: 20.0
  2580. LURE-3:
  2581. income: 30.0
  2582. points: 30.0
  2583. experience: 30.0
  2584. OXYGEN-1:
  2585. income: 10.0
  2586. points: 10.0
  2587. experience: 10.0
  2588. OXYGEN-2:
  2589. income: 20.0
  2590. points: 20.0
  2591. experience: 20.0
  2592. OXYGEN-3:
  2593. income: 30.0
  2594. points: 30.0
  2595. experience: 30.0
  2596. PROTECTION_ENVIRONMENTAL-1:
  2597. income: 10.0
  2598. points: 10.0
  2599. experience: 10.0
  2600. PROTECTION_ENVIRONMENTAL-2:
  2601. income: 20.0
  2602. points: 20.0
  2603. experience: 20.0
  2604. PROTECTION_ENVIRONMENTAL-3:
  2605. income: 30.0
  2606. points: 30.0
  2607. experience: 30.0
  2608. PROTECTION_ENVIRONMENTAL-4:
  2609. income: 40.0
  2610. points: 40.0
  2611. experience: 40.0
  2612. PROTECTION_EXPLOSIONS-1:
  2613. income: 10.0
  2614. points: 10.0
  2615. experience: 10.0
  2616. PROTECTION_EXPLOSIONS-2:
  2617. income: 20.0
  2618. points: 20.0
  2619. experience: 20.0
  2620. PROTECTION_EXPLOSIONS-3:
  2621. income: 30.0
  2622. points: 30.0
  2623. experience: 30.0
  2624. PROTECTION_EXPLOSIONS-4:
  2625. income: 40.0
  2626. points: 40.0
  2627. experience: 40.0
  2628. PROTECTION_FALL-1:
  2629. income: 10.0
  2630. points: 10.0
  2631. experience: 10.0
  2632. PROTECTION_FALL-2:
  2633. income: 20.0
  2634. points: 20.0
  2635. experience: 20.0
  2636. PROTECTION_FALL-3:
  2637. income: 30.0
  2638. points: 30.0
  2639. experience: 30.0
  2640. PROTECTION_FALL-4:
  2641. income: 40.0
  2642. points: 40.0
  2643. experience: 40.0
  2644. PROTECTION_FIRE-1:
  2645. income: 5.0
  2646. points: 5.0
  2647. experience: 10.0
  2648. PROTECTION_FIRE-2:
  2649. income: 10.0
  2650. points: 10.0
  2651. experience: 20.0
  2652. PROTECTION_FIRE-3:
  2653. income: 20.0
  2654. points: 20.0
  2655. experience: 30.0
  2656. PROTECTION_FIRE-4:
  2657. income: 30.0
  2658. points: 30.0
  2659. experience: 40.0
  2660. PROTECTION_PROJECTILE-1:
  2661. income: 10.0
  2662. points: 10.0
  2663. experience: 10.0
  2664. PROTECTION_PROJECTILE-2:
  2665. income: 20.0
  2666. points: 20.0
  2667. experience: 20.0
  2668. PROTECTION_PROJECTILE-3:
  2669. income: 30.0
  2670. points: 30.0
  2671. experience: 30.0
  2672. PROTECTION_PROJECTILE-4:
  2673. income: 40.0
  2674. points: 40.0
  2675. experience: 40.0
  2676. SILK_TOUCH:
  2677. income: 100.0
  2678. points: 100.0
  2679. experience: 300.0
  2680. THORNS-1:
  2681. income: 10.0
  2682. points: 10.0
  2683. experience: 10.0
  2684. THORNS-2:
  2685. income: 20.0
  2686. points: 20.0
  2687. experience: 20.0
  2688. THORNS-3:
  2689. income: 30.0
  2690. points: 30.0
  2691. experience: 30.0
  2692. WATER_WORKER:
  2693. income: 30.0
  2694. points: 30.0
  2695. experience: 100.0
  2696. custom-kill:
  2697. Slayer:
  2698. income: 10.0
  2699. points: 10.0
  2700. experience: 10.0
  2701. Cook:
  2702. fullname: Cook
  2703. shortname: co
  2704. description: Earns money by cooking and preparing food!
  2705. ChatColour: LIGHT_PURPLE
  2706. chat-display: full
  2707. max-level: 100
  2708. leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  2709. income-progression-equation: baseincome+(baseincome*(joblevel-1)*0.02)-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  2710. points-progression-equation: basepoints+(basepoints*(joblevel-1)*0.01)-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  2711. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  2712. rejoinCooldown: 10
  2713. cmd-on-leave:
  2714. - "lp user [player] parent add cook25"
  2715. commands:
  2716. tag:
  2717. command: lp user [player] set deluxetags.tag.cook
  2718. levelFrom: 25
  2719. levelUntil: 100
  2720. tagalert:
  2721. command: /tellraw [player] ["",{"text":"[","color":"blue"},{"text":"JobTags","color":"dark_aqua"},{"text":"]","color":"blue"},{"text":" You can now use the tag for ","color":"aqua"},{"text":"Cook","bold":true,"color":"aqua"},{"text":"!","color":"aqua"}]
  2722. levelFrom: 25
  2723. levelUntil: 25
  2724. perk25:
  2725. command: lp user [player] parent add cook25
  2726. levelFrom: 25
  2727. levelUntil: 50
  2728. Gui:
  2729. Id: 297
  2730. Data: 0
  2731. Craft:
  2732. BREAD:
  2733. income: 0.35
  2734. experience: 0.2
  2735. '282':
  2736. income: 0.25
  2737. experience: 0.2
  2738. '322':
  2739. income: 2
  2740. experience: 8
  2741. '322:1':
  2742. income: 7
  2743. experience: 20
  2744. '354':
  2745. income: 2
  2746. experience: 2
  2747.  
  2748. Smelt:
  2749. '364':
  2750. income: 1.25
  2751. points: 6.0
  2752. experience: 1.0
  2753. '366':
  2754. income: 1.25
  2755. points: 6.0
  2756. experience: 1.0
  2757. '393':
  2758. income: 1.25
  2759. points: 6.0
  2760. experience: 1.0
  2761. '424':
  2762. income: 1.25
  2763. points: 6.0
  2764. experience: 1.0
  2765. '412':
  2766. income: 1.25
  2767. points: 6.0
  2768. experience: 1.0
  2769. '320':
  2770. income: 1.25
  2771. points: 6.0
  2772. experience: 1.0
  2773. '350':
  2774. income: 2.50
  2775. points: 6.0
  2776. experience: 2.5
  2777. '350:1':
  2778. income: 3.00
  2779. points: 6.0
  2780. experience: 3.00
  2781. custom-kill:
  2782. Slayer:
  2783. income: 10.0
  2784. points: 10.0
  2785. experience: 10.0
  2786. Eater:
  2787. fullname: Eater
  2788. shortname: co
  2789. description: Earns money by eating food!
  2790. ChatColour: LIGHT_PURPLE
  2791. chat-display: full
  2792. max-level: 100
  2793. leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  2794. income-progression-equation: baseincome+(baseincome*(joblevel-1)*0.02)-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  2795. points-progression-equation: basepoints+(basepoints*(joblevel-1)*0.01)-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  2796. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  2797. rejoinCooldown: 10
  2798. cmd-on-leave:
  2799. - "lp user [player] set cmi.kit.baggedlunch false"
  2800. commands:
  2801. tag:
  2802. command: lp user [player] set deluxetags.tag.eater
  2803. levelFrom: 25
  2804. levelUntil: 100
  2805. tagalert:
  2806. command: /tellraw [player] ["",{"text":"[","color":"blue"},{"text":"JobTags","color":"dark_aqua"},{"text":"]","color":"blue"},{"text":" You can now use the tag for ","color":"aqua"},{"text":"Eater","bold":true,"color":"aqua"},{"text":"!","color":"aqua"}]
  2807. levelFrom: 25
  2808. levelUntil: 25
  2809. perk75:
  2810. command: lp user [player] set cmi.kit.baggedlunch
  2811. levelFrom: 75
  2812. levelUntil: 75
  2813. Gui:
  2814. Id: 364
  2815. Data: 0
  2816. Eat:
  2817. BREAD:
  2818. income: 0.6
  2819. experience: 0.6
  2820. '260':
  2821. income: 0.6
  2822. experience: 0.6
  2823. '320':
  2824. income: 0.40
  2825. experience: 0.40
  2826. '364':
  2827. income: 0.50
  2828. experience: 0.50
  2829. '424':
  2830. income: 0.40
  2831. experience: 0.40
  2832. '366':
  2833. income: 0.30
  2834. experience: 0.30
  2835. '412':
  2836. income: 0.40
  2837. experience: 0.40
  2838. '357':
  2839. income: 0.20
  2840. experience: 0.20
  2841. '393':
  2842. income: 0.30
  2843. experience: 0.30
  2844. '400':
  2845. income: 0.60
  2846. experience: 0.60
  2847. '360':
  2848. income: 0.30
  2849. experience: 0.30
  2850. '391':
  2851. income: 0.30
  2852. experience: 0.30
  2853. '282':
  2854. income: 0.40
  2855. experience: 0.40
  2856. '322':
  2857. income: 6
  2858. experience: 10
  2859. '322:1':
  2860. income: 15
  2861. experience: 25
  2862. custom-kill:
  2863. Slayer:
  2864. income: 10.0
  2865. points: 10.0
  2866. experience: 10.0
  2867. None:
  2868. fullname: None
  2869. shortname: N
  2870. ChatColour: WHITE
  2871. chat-display: none
  2872. #max-level: 10
  2873. #slots: 10
  2874. leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  2875. income-progression-equation: baseincome+(baseincome*(joblevel-1)*0.02)-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  2876. points-progression-equation: basepoints+(basepoints*(joblevel-1)*0.01)-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  2877. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  2878. Kill:
  2879. Player:
  2880. income: 7.5
Add Comment
Please, Sign In to add comment