Ulfric

Untitled

Apr 15th, 2016
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 57.67 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. # The colour of the name, for a full list of supported colours, go to the message config.
  27. ChatColour: GREEN
  28. # Option to let you choose what kind of prefix this job adds to your name.
  29. # options are: full, title, job, shortfull, shorttitle, shortjob and none
  30. chat-display: full
  31. # [OPTIONAL] - the maximum level of this class
  32. max-level: 10
  33. # [OPTIONAL] - the maximum level of this class with specific permission
  34. # use jobs.[jobsname].vipmaxlevel, in this case it will be jobs.exampleJob.vipmaxlevel
  35. vip-max-level: 20
  36. # [OPTIONAL] - the maximum number of users on the server that can have this job at
  37. # any one time (includes offline players).
  38. slots: 1
  39. # Equation used for calculating how much experience is needed to go to the next level.
  40. # Available parameters:
  41. # numjobs - the number of jobs the player has
  42. # joblevel - the level the player has attained in the job.
  43. # NOTE: Please take care of the brackets when modifying this equation.
  44. leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  45. # Equation used for calculating how much income is given per action for the job level.
  46. # Available parameters:
  47. # numjobs - the number of jobs the player has
  48. # baseincome - the income for the action at level 1 (as set in the configuration).
  49. # joblevel - the level the player has attained in the job.
  50. # NOTE: Please take care of the brackets when modifying this equation.
  51. income-progression-equation: baseincome+(joblevel-1)*0.01-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  52. # Equation used for calculating how much points is given per action for the job level.
  53. # Available parameters:
  54. # numjobs - the number of jobs the player has
  55. # basepoints - the points for the action at level 1 (as set in the configuration).
  56. # joblevel - the level the player has attained in the job.
  57. # NOTE: Please take care of the brackets when modifying this equation.
  58. points-progression-equation: basepoints+(joblevel-1)*0.01-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  59. # Equation used for calculating how much experience is given per action for the job level.
  60. # Available parameters:
  61. # numjobs - the number of jobs the player has
  62. # baseexperience - the experience 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. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  66. # GUI icon information when using GUI function
  67. Gui:
  68. # id of block
  69. Id: 17
  70. # data of block, usualy its 0, but in example Diorite will have id of 1 and data of 3
  71. Data: 2
  72. ########################################################################
  73. # Section used to configure what items the job gets paid for, how much
  74. # they get paid and how much experience they gain.
  75. #
  76. # For break and place, the block name or id is used.
  77. # You can select a sub-type by using a '-' between the id and the bit
  78. # value for the sub-type. e.g LOG-0 = usual log, LOG-2 = birch log
  79. # 17-2 = birch log.
  80. #
  81. # If no sub-type is give, the payout will be for all sub-types.
  82. #
  83. # To get a list of all available block types, check the
  84. # bukkit JavaDocs for a complete list of block types
  85. # https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  86. #
  87. # For kill tags (Kill and custom-kill), the name is the name of the
  88. # mob.
  89. # Available mobs:
  90. # Bat
  91. # Blaze
  92. # Cave_spider
  93. # Chicken
  94. # Cow
  95. # Creeper
  96. # Ender_dragon
  97. # Enderman
  98. # Endermite
  99. # Ghast
  100. # Giant
  101. # Guardian
  102. # Horse
  103. # Iron_golem
  104. # Magma_cube
  105. # Mushroom_cow
  106. # Ocelot
  107. # Pig
  108. # Player
  109. # Rabbit
  110. # Sheep
  111. # Silverfish
  112. # Skeleton
  113. # Shulker
  114. # Slime
  115. # Snowman
  116. # Spider
  117. # Squid
  118. # Villager
  119. # Witch
  120. # Wither
  121. # Wolf
  122. # Zombie
  123. #
  124. #
  125. # NOTE: mob names are case sensitive.
  126. #
  127. # For custom-kill, it is the name of the job (also case sensitive).
  128. #
  129. # NOTE: If a job has both the pay for killing a player and for killing a
  130. # specific class, they will get both payments.
  131. ########################################################################
  132. # payment for breaking a block
  133. Break:
  134. # block name/id (with optional sub-type)
  135. LOG:
  136. # base income, can be not used if using point system
  137. income: 5.0
  138. # base points, can be not used if using income system
  139. points: 5.0
  140. # base experience
  141. experience: 5.0
  142. # (OPTIONAL) from which level of this job player can get money for this action
  143. # if not given, then player will always get money for this action
  144. # this can be used for any action
  145. from-level: 1
  146. # (OPTIONAL) until which level player can get money for this action.
  147. # if not given, then there is no limit
  148. # this can be used for any action
  149. until-level: 30
  150. # payment for breaking a block with tnt
  151. TNTBreak:
  152. LOG:
  153. income: 5.0
  154. points: 5.0
  155. experience: 5.0
  156. # payment for placing a block
  157. Place:
  158. SAPLING:
  159. income: 1.0
  160. points: 1.0
  161. experience: 1.0
  162. WOOD:
  163. income: 2.0
  164. points: 2.0
  165. experience: 2.0
  166. # killing a mob
  167. Kill:
  168. # mob name
  169. Player:
  170. # base income
  171. income: 7.5
  172. # base experience
  173. experience: 7.5
  174. # killing a MythicMob
  175. MMKill:
  176. # mob name
  177. CustomNameHere:
  178. # base income
  179. income: 7.5
  180. # base experience
  181. experience: 7.5
  182. # Killing player with certain job
  183. custom-kill:
  184. Woodcutter:
  185. income: 10.0
  186. experience: 10.0
  187. # Tamig animals
  188. Tame:
  189. Wolf:
  190. income: 2.0
  191. experience: 5.0
  192. # Breeding animals
  193. Breed:
  194. Wolf:
  195. income: 2.0
  196. experience: 5.0
  197. # Eating food
  198. Eat:
  199. cooked_rabbit:
  200. income: 5
  201. experience: 5
  202. baked_potato:
  203. income: 5
  204. experience: 5
  205. # Milking cows, only one option is available
  206. Milk:
  207. Cow:
  208. income: 2.0
  209. experience: 5.0
  210. Mushroomcow:
  211. income: 5.0
  212. experience: 10.0
  213. # Shear sheeps by its color
  214. Shear:
  215. Black:
  216. income: 2.0
  217. experience: 5.0
  218. Blue:
  219. income: 2.0
  220. experience: 5.0
  221. Brown:
  222. income: 2.0
  223. experience: 5.0
  224. Cyan:
  225. income: 2.0
  226. experience: 5.0
  227. Gray:
  228. income: 2.0
  229. experience: 5.0
  230. Green:
  231. income: 2.0
  232. experience: 5.0
  233. Light_blue:
  234. income: 2.0
  235. experience: 5.0
  236. Lime:
  237. income: 2.0
  238. experience: 5.0
  239. Magenta:
  240. income: 2.0
  241. experience: 5.0
  242. Orange:
  243. income: 2.0
  244. experience: 5.0
  245. Pink:
  246. income: 2.0
  247. experience: 5.0
  248. Purple:
  249. income: 2.0
  250. experience: 5.0
  251. Red:
  252. income: 2.0
  253. experience: 5.0
  254. Silver:
  255. income: 2.0
  256. experience: 5.0
  257. White:
  258. income: 2.0
  259. experience: 5.0
  260. Yellow:
  261. income: 2.0
  262. experience: 5.0
  263. # dyeing armor
  264. Dye:
  265. LEATHER_BOOTS:
  266. income: 1.0
  267. experience: 1.0
  268. LEATHER_CHESTPLATE:
  269. income: 1.0
  270. experience: 1.0
  271. LEATHER_HELMET:
  272. income: 1.0
  273. experience: 1.0
  274. LEATHER_LEGGINGS:
  275. income: 1.0
  276. experience: 1.0
  277. 351:
  278. income: 1.0
  279. experience: 1.0
  280. # Catching fish
  281. Fish:
  282. '349':
  283. income: 20.0
  284. experience: 25.0
  285. # Repairing items
  286. Repair:
  287. WOOD_SWORD:
  288. income: 1.0
  289. experience: 1.0
  290. IRON_SWORD:
  291. income: 2.0
  292. experience: 2.0
  293. # Crafting items
  294. Craft:
  295. WOOD_SWORD:
  296. income: 1.5
  297. experience: 3.0
  298. LEATHER_BOOTS:
  299. income: 1.0
  300. experience: 6.0
  301. # Smelting ores
  302. Smelt:
  303. IRON_INGOT:
  304. income: 2.0
  305. experience: 8.0
  306. GOLD_INGOT:
  307. income: 4.5
  308. experience: 12
  309. # Enchanting items
  310. Enchant:
  311. # You can set item for which player will get money
  312. WOOD_SWORD:
  313. income: 1.5
  314. experience: 3.0
  315. LEATHER_BOOTS:
  316. income: 1.0
  317. experience: 6.0
  318. # Or/and you can give money for each enchantment they got
  319. DIG_SPEED-1:
  320. income: 3.0
  321. experience: 10.0
  322. DIG_SPEED-2:
  323. income: 6.0
  324. experience: 20.0
  325. # Brewing potions
  326. Brew:
  327. NETHER_STALK:
  328. income: 5.0
  329. experience: 3.0
  330. REDSTONE:
  331. income: 5.0
  332. experience: 3.0
  333. # Explore options. Each number represents players number in exploring that chunk
  334. # 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
  335. Explore:
  336. 1:
  337. income: 5.0
  338. experience: 5.0
  339. 2:
  340. income: 2.5
  341. experience: 2.5
  342. 3:
  343. income: 1.0
  344. experience: 1.0
  345. 4:
  346. income: 0.5
  347. experience: 0.5
  348. 5:
  349. income: 0.1
  350. experience: 0.1
  351. # permissions granted for joining class
  352. permissions:
  353. # example node
  354. aaaaaatest.node:
  355. # true to give, false to revoke
  356. value: true
  357. # minimum level needed to grant permission. Use 0 for all levels
  358. level: 0
  359. aaaaaatest.node2:
  360. value: true
  361. # Permission granted when reaching level 10
  362. level: 10
  363. # Permissions granted when perticular conditions are meet
  364. conditions:
  365. # Condition mane, irelevent, you can write anything in here
  366. first:
  367. requires:
  368. # j marks that player should have particular jobs level and higher
  369. - j:Miner-50
  370. - j:Digger-50
  371. # p marks permission requirement
  372. - p:essentials.notnoob
  373. perform:
  374. # p marks permission, player will get if given true value, if used false, permission will be taken
  375. - p:essentials.fly-true
  376. # Commands executed when player reached level
  377. commands:
  378. # command name, just to have better idea what this do
  379. fly:
  380. # Command its self, this will be executed from console, so all commands should work
  381. # Possible variables are: [player] [jobname] [oldlevel] [newlevel]
  382. command: manuaddp [player] essentials.fly
  383. # When to execute this command first time
  384. levelFrom: 100
  385. # Until when to do this command
  386. # This can be set to same level as levelFrom, so this command will be executed only once
  387. levelUntil: 100
  388. kit:
  389. command: manuaddp [player] essentials.kits.woodcutter
  390. levelFrom: 150
  391. levelUntil: 150
  392. # Getting more money when equiped with specific weapon/tool ar wearing armor
  393. items:
  394. # Just name, dont have any impact
  395. firstOne:
  396. # Tool/Weapon id. Works for block Break, Fish, Animal tame, Breed, Monster/Player kill.
  397. id: 278
  398. # Items name, should be with color codes
  399. name: '&8Miner Pickaxe'
  400. # Item lore, again should come with color codes
  401. lore:
  402. - '&eBobs pick'
  403. - '&710% bonus XP'
  404. # Item enchantments, all enchantment names can be found https://hub.spigotmc.org/javadocs/spigot/org/bukkit/enchantments/Enchantment.html
  405. enchants:
  406. - DAMAGE_ALL=1
  407. - FIRE_ASPECT=1
  408. # Money boost: 1.1 is equals 10% more income when 0.9 is equals 10% less from base income
  409. moneyBoost: 1.1
  410. # Exp boost
  411. expBoost: 1.1
  412. helmet:
  413. # Armor id. This one works with all jobs
  414. id: 310
  415. name: '&8Armor'
  416. lore:
  417. - '&eBobs armor'
  418. - '&710% bonus XP'
  419. moneyBoost: 1.1
  420. expBoost: 1.1
  421. # Limit item use to jobs level
  422. limitedItems:
  423. # Just name, dont have any impact
  424. firstOne:
  425. # Tool/Weapon id. Works for any interact action.
  426. id: 278
  427. # Level of this job player can start using this item
  428. level: 5
  429. # (optional) Items name, option to use color codes
  430. name: '&8Miner Pickaxe'
  431. # (optional) Item lore, again can come with color codes
  432. lore:
  433. - '&eBobs pick'
  434. - '&710% bonus XP'
  435. # (optional) Item enchantments, all enchantment names can be found https://hub.spigotmc.org/javadocs/spigot/org/bukkit/enchantments/Enchantment.html
  436. # enchant level can inrease with jobs level to give best RPG experiance
  437. enchants:
  438. - DAMAGE_ALL=1
  439. - FIRE_ASPECT=1
  440. cmd-on-join:
  441. - 'msg [name] Thx for joining this job!'
  442. - 'msg [name] Now start working and get money from [jobname] job!'
  443. cmd-on-leave:
  444. - 'msg [name] You have left this awesome [jobname] job'
  445. - 'msg [name] See you soon!'
  446. # from this point you can edit jobs by your liking, rename, remove or add new ones
  447. Woodcutter:
  448. fullname: Woodcutter
  449. shortname: W
  450. description: Earns money felling and planting trees
  451. ChatColour: GREEN
  452. chat-display: full
  453. leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  454. income-progression-equation: baseincome+(joblevel-1)*0.01-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  455. points-progression-equation: basepoints+(joblevel-1)*0.01-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  456. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  457. Gui:
  458. Id: 17
  459. Data: 2
  460. Break:
  461. 17-0:
  462. income: 2.5
  463. points: 2.5
  464. experience: 2.5
  465. 17-1:
  466. income: 2.0
  467. points: 2.5
  468. experience: 2.0
  469. 17-2:
  470. income: 2.5
  471. points: 2.5
  472. experience: 2.5
  473. 17-3:
  474. income: 2.5
  475. points: 2.5
  476. experience: 2.5
  477. 18-0:
  478. income: 0.5
  479. points: 0.5
  480. experience: 0.5
  481. 18-1:
  482. income: 0.5
  483. points: 0.5
  484. experience: 0.5
  485. 18-2:
  486. income: 0.5
  487. points: 0.5
  488. experience: 0.5
  489. 18-3:
  490. income: 0.5
  491. points: 0.5
  492. experience: 0.5
  493. 161-0:
  494. income: 0.5
  495. points: 0.5
  496. experience: 0.5
  497. 161-1:
  498. income: 0.5
  499. points: 0.5
  500. experience: 0.5
  501. 162-0:
  502. income: 2.5
  503. points: 2.5
  504. experience: 2.5
  505. 162-1:
  506. income: 2.5
  507. points: 2.5
  508. experience: 2.5
  509. Kill:
  510. Player:
  511. income: 7.5
  512. points: 7.5
  513. experience: 7.5
  514. custom-kill:
  515. Woodcutter:
  516. income: 10.0
  517. points: 10.0
  518. experience: 10.0
  519. max-level: 200
  520. Miner:
  521. fullname: Miner
  522. shortname: M
  523. description: Earns money mining minerals and ores.
  524. ChatColour: DARK_GRAY
  525. chat-display: full
  526. #max-level: 10
  527. #slots: 10
  528. leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  529. income-progression-equation: baseincome+(joblevel-1)*0.01-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  530. points-progression-equation: basepoints+(joblevel-1)*0.01-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  531. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  532. Gui:
  533. Id: 270
  534. Data: 0
  535. TNTBreak:
  536. STONE:
  537. income: 0.3
  538. points: 0.3
  539. experience: 0.3
  540. STONE-1:
  541. income: 1
  542. points: 1
  543. experience: 1
  544. STONE-3:
  545. income: 1
  546. points: 1
  547. experience: 1
  548. STONE-5:
  549. income: 1
  550. points: 1
  551. experience: 1
  552. Break:
  553. STONE:
  554. income: 0.3
  555. points: 0.3
  556. experience: 0.3
  557. STONE-1:
  558. income: 1
  559. points: 1
  560. experience: 1
  561. STONE-3:
  562. income: 1
  563. points: 1
  564. experience: 1
  565. STONE-5:
  566. income: 1
  567. points: 1
  568. experience: 1
  569. COAL_ORE:
  570. income: 3
  571. points: 2
  572. experience: 2
  573. SANDSTONE:
  574. income: 0.15
  575. points: 0.15
  576. experience: 0.2
  577. SANDSTONE-1:
  578. income: 0.15
  579. points: 0.15
  580. experience: 0.2
  581. SANDSTONE-2:
  582. income: 0.15
  583. points: 0.15
  584. experience: 0.2
  585. GLOWING_REDSTONE_ORE:
  586. income: 2.5
  587. points: 2
  588. experience: 2
  589. IRON_ORE:
  590. income: 3.5
  591. points: 3
  592. experience: 2
  593. GOLD_ORE:
  594. income: 5
  595. points: 4
  596. experience: 2
  597. LAPIS_ORE:
  598. income: 7.5
  599. points: 6
  600. experience: 2
  601. DIAMOND_ORE:
  602. income: 10
  603. points: 10
  604. experience: 10
  605. EMERALD_ORE:
  606. income: 15
  607. points: 15
  608. experience: 30
  609. QUARTZ_ORE:
  610. income: 2.5
  611. points: 2.5
  612. experience: 2.5
  613. OBSIDIAN:
  614. income: 5
  615. points: 5
  616. experience: 5
  617. MOSSY_COBBLESTONE:
  618. income: 2.5
  619. points: 2.5
  620. experience: 2.5
  621. NETHER_BRICK:
  622. income: 1.0
  623. points: 1
  624. experience: 1.0
  625. NETHER_BRICK_STAIRS:
  626. income: 3
  627. points: 3
  628. experience: 3
  629. NETHER_FENCE:
  630. income: 1
  631. points: 1
  632. experience: 1
  633. NETHERRACK:
  634. income: 0.1
  635. points: 0.1
  636. experience: 0.1
  637. PRISMARINE:
  638. income: 2.5
  639. points: 2.5
  640. experience: 2.5
  641. Place:
  642. RAILS:
  643. income: 2.0
  644. points: 2.0
  645. experience: 2.0
  646. IRON_ORE:
  647. income: -5.0
  648. points: -5
  649. experience: -5.0
  650. GOLD_ORE:
  651. income: -6.0
  652. points: -6
  653. experience: -6.0
  654. DIAMOND_ORE:
  655. income: -10.0
  656. points: -10
  657. experience: -10.0
  658. Kill:
  659. Player:
  660. income: 7.5
  661. points: 7.5
  662. experience: 7.5
  663. max-level: 200
  664. Builder:
  665. fullname: Builder
  666. shortname: B
  667. description: Earns money for building structures.
  668. ChatColour: WHITE
  669. chat-display: full
  670. #max-level: 10
  671. #slots: 10
  672. leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  673. income-progression-equation: baseincome+(joblevel-1)*0.01-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  674. points-progression-equation: basepoints+(joblevel-1)*0.01-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  675. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  676. Gui:
  677. Id: 108
  678. Data: 0
  679. Place:
  680. STONE-2:
  681. income: 1.3
  682. points: 1.3
  683. experience: 2
  684. STONE-4:
  685. income: 1.3
  686. points: 1.3
  687. experience: 2
  688. STONE-6:
  689. income: 1.3
  690. points: 1.3
  691. experience: 2
  692. COBBLESTONE:
  693. income: 0.7
  694. points: 0.7
  695. experience: 2
  696. '5':
  697. income: 1.5
  698. points: 1.5
  699. experience: 2
  700. '35':
  701. income: 1.5
  702. points: 1.5
  703. experience: 2
  704. '41':
  705. income: 1.5
  706. points: 1.5
  707. experience: 2
  708. '42':
  709. income: 1.5
  710. points: 1.5
  711. experience: 2
  712. '44':
  713. income: 0.8
  714. points: 0.8
  715. experience: 2
  716. '45':
  717. income: 1.5
  718. points: 1.5
  719. experience: 2
  720. '47':
  721. income: 1.5
  722. points: 1.5
  723. experience: 2
  724. '48':
  725. income: 1.5
  726. points: 1.5
  727. experience: 2
  728. '49':
  729. income: 1.5
  730. points: 1.5
  731. experience: 2
  732. '53':
  733. income: 1.5
  734. points: 1.5
  735. experience: 2
  736. '54':
  737. income: 1.5
  738. points: 1.5
  739. experience: 2
  740. '57':
  741. income: 1.5
  742. points: 1.5
  743. experience: 2
  744. '58':
  745. income: 1.5
  746. points: 1.5
  747. experience: 2
  748. '61':
  749. income: 1.5
  750. points: 1.5
  751. experience: 2
  752. '65':
  753. income: 1.5
  754. points: 1.5
  755. experience: 2
  756. '67':
  757. income: 1.5
  758. points: 1.5
  759. experience: 2
  760. '79':
  761. income: 1.5
  762. points: 1.5
  763. experience: 2
  764. '80':
  765. income: 1.0
  766. points: 1.0
  767. experience: 2
  768. '84':
  769. income: 1.0
  770. points: 1.0
  771. experience: 2
  772. '85':
  773. income: 1.5
  774. points: 1.5
  775. experience: 2
  776. '89':
  777. income: 1.5
  778. points: 1.5
  779. experience: 2
  780. '95':
  781. income: 1.5
  782. points: 1.5
  783. experience: 2
  784. '96':
  785. income: 1.5
  786. points: 1.5
  787. experience: 2
  788. '98':
  789. income: 1.5
  790. points: 1.5
  791. experience: 2
  792. '101':
  793. income: 1.5
  794. points: 1.5
  795. experience: 2
  796. '102':
  797. income: 1.5
  798. points: 1.5
  799. experience: 2
  800. '107':
  801. income: 1.5
  802. points: 1.5
  803. experience: 2
  804. '108':
  805. income: 1.5
  806. points: 1.5
  807. experience: 2
  808. '109':
  809. income: 1.5
  810. points: 1.5
  811. experience: 2
  812. '112':
  813. income: 1.5
  814. points: 1.5
  815. experience: 2
  816. '113':
  817. income: 1.5
  818. points: 1.5
  819. experience: 2
  820. '114':
  821. income: 1.5
  822. points: 1.5
  823. experience: 2
  824. '116':
  825. income: 1.5
  826. points: 1.5
  827. experience: 2
  828. '120':
  829. income: 1.5
  830. points: 1.5
  831. experience: 2
  832. '123':
  833. income: 1.0
  834. points: 1.0
  835. experience: 2
  836. '126':
  837. income: 0.8
  838. points: 0.8
  839. experience: 2
  840. '128':
  841. income: 1.5
  842. points: 1.5
  843. experience: 2
  844. '130':
  845. income: 1.5
  846. points: 1.5
  847. experience: 2
  848. '133':
  849. income: 1.5
  850. points: 1.5
  851. experience: 2
  852. '134':
  853. income: 1.5
  854. points: 1.5
  855. experience: 2
  856. '139':
  857. income: 1.5
  858. points: 1.5
  859. experience: 2
  860. '146':
  861. income: 1.5
  862. points: 1.5
  863. experience: 2
  864. '152':
  865. income: 1.5
  866. points: 1.5
  867. experience: 2
  868. '154':
  869. income: 1.5
  870. points: 1.5
  871. experience: 2
  872. '155':
  873. income: 1.5
  874. points: 1.5
  875. experience: 2
  876. '156':
  877. income: 1.5
  878. points: 1.5
  879. experience: 2
  880. '159':
  881. income: 1.5
  882. points: 1.5
  883. experience: 2
  884. '160':
  885. income: 1.5
  886. points: 1.5
  887. experience: 2
  888. '161':
  889. income: 1.5
  890. points: 1.5
  891. experience: 2
  892. '163':
  893. income: 1.5
  894. points: 1.5
  895. experience: 2
  896. '164':
  897. income: 1.5
  898. points: 1.5
  899. experience: 2
  900. '167':
  901. income: 1.5
  902. points: 1.5
  903. experience: 2
  904. '168':
  905. income: 1.3
  906. points: 1.3
  907. experience: 1.9
  908. '169':
  909. income: 1.5
  910. points: 1.5
  911. experience: 2
  912. '170':
  913. income: 1.5
  914. points: 1.5
  915. experience: 2
  916. '172':
  917. income: 1.5
  918. points: 1.5
  919. experience: 2
  920. '173':
  921. income: 1.5
  922. points: 1.5
  923. experience: 2
  924. '174':
  925. income: 1.5
  926. points: 1.5
  927. experience: 2
  928. '179':
  929. income: 1.5
  930. points: 1.5
  931. experience: 2
  932. '180':
  933. income: 1.5
  934. points: 1.5
  935. experience: 2
  936. '182':
  937. income: 0.8
  938. points: 0.8
  939. experience: 2
  940. '183':
  941. income: 1.5
  942. points: 1.5
  943. experience: 2
  944. '184':
  945. income: 1.5
  946. points: 1.5
  947. experience: 2
  948. '185':
  949. income: 1.5
  950. points: 1.5
  951. experience: 2
  952. '186':
  953. income: 1.5
  954. points: 1.5
  955. experience: 2
  956. '187':
  957. income: 1.5
  958. points: 1.5
  959. experience: 2
  960. '188':
  961. income: 1.5
  962. points: 1.5
  963. experience: 2
  964. '189':
  965. income: 1.5
  966. points: 1.5
  967. experience: 2
  968. '190':
  969. income: 1.5
  970. points: 1.5
  971. experience: 2
  972. '191':
  973. income: 1.5
  974. points: 1.5
  975. experience: 2
  976. '192':
  977. income: 1.5
  978. points: 1.5
  979. experience: 2
  980. Kill:
  981. Player:
  982. income: 7.5
  983. points: 7.5
  984. experience: 7.5
  985. max-level: 200
  986. Digger:
  987. fullname: Digger
  988. shortname: D
  989. description: Earns money for terraforming the world.
  990. ChatColour: GOLD
  991. chat-display: full
  992. #max-level: 10
  993. #slots: 10
  994. leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  995. income-progression-equation: baseincome+(joblevel-1)*0.01-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  996. points-progression-equation: basepoints+(joblevel-1)*0.01-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  997. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  998. Gui:
  999. Id: 269
  1000. Data: 0
  1001. Break:
  1002. '179':
  1003. income: 1
  1004. points: 1
  1005. experience: 1
  1006. DIRT:
  1007. income: 0.25
  1008. points: 0.25
  1009. experience: 0.25
  1010. GRASS:
  1011. income: 0.3
  1012. points: 0.3
  1013. experience: 0.3
  1014. GRAVEL:
  1015. income: 1
  1016. points: 1
  1017. experience: 1.0
  1018. SAND:
  1019. income: 0.4
  1020. points: 0.4
  1021. experience: 0.5
  1022. CLAY:
  1023. income: 1
  1024. points: 1
  1025. experience: 1.0
  1026. '159':
  1027. income: 1
  1028. points: 1
  1029. experience: 1.0
  1030. Kill:
  1031. Player:
  1032. income: 7.5
  1033. points: 7.5
  1034. experience: 7.5
  1035. custom-kill:
  1036. Digger:
  1037. income: 10.0
  1038. points: 10.0
  1039. experience: 10.0
  1040. max-level: 200
  1041. Farmer:
  1042. fullname: Farmer
  1043. shortname: Fa
  1044. description: Earns money farming crops.
  1045. ChatColour: BLUE
  1046. chat-display: full
  1047. #max-level: 10
  1048. #slots: 10
  1049. leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  1050. income-progression-equation: baseincome+(joblevel-1)*0.01-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1051. points-progression-equation: basepoints+(joblevel-1)*0.01-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1052. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  1053. Gui:
  1054. Id: 290
  1055. Data: 0
  1056. Tame:
  1057. Wolf:
  1058. income: 5.0
  1059. points: 5.0
  1060. experience: 5.0
  1061. Horse:
  1062. income: 5.0
  1063. points: 5.0
  1064. experience: 5.0
  1065. Breed:
  1066. Wolf:
  1067. income: 4.0
  1068. points: 4.0
  1069. experience: 5.0
  1070. Ocelot:
  1071. income: 4.0
  1072. points: 4.0
  1073. experience: 5.0
  1074. Pig:
  1075. income: 4.0
  1076. points: 4.0
  1077. experience: 5.0
  1078. Cow:
  1079. income: 4.0
  1080. points: 4.0
  1081. experience: 5.0
  1082. Horse:
  1083. income: 4.0
  1084. points: 4.0
  1085. experience: 5.0
  1086. Rabbit:
  1087. income: 4.0
  1088. points: 4.0
  1089. experience: 5.0
  1090. Sheep:
  1091. income: 4.0
  1092. points: 4.0
  1093. experience: 5.0
  1094. Chicken:
  1095. income: 4.0
  1096. points: 4.0
  1097. experience: 5.0
  1098. Shear:
  1099. Red:
  1100. income: 4.0
  1101. points: 4.0
  1102. experience: 5.0
  1103. Orange:
  1104. income: 4.0
  1105. points: 4.0
  1106. experience: 5.0
  1107. Yellow:
  1108. income: 4.0
  1109. points: 4.0
  1110. experience: 5.0
  1111. Green:
  1112. income: 4.0
  1113. points: 4.0
  1114. experience: 5.0
  1115. Blue:
  1116. income: 4.0
  1117. points: 4.0
  1118. experience: 5.0
  1119. 'Light Blue':
  1120. income: 4.0
  1121. points: 4.0
  1122. experience: 5.0
  1123. Magenta:
  1124. income: 4.0
  1125. points: 4.0
  1126. experience: 5.0
  1127. Pink:
  1128. income: 4.0
  1129. points: 4.0
  1130. experience: 5.0
  1131. White:
  1132. income: 4.0
  1133. points: 4.0
  1134. experience: 5.0
  1135. 'Light Gray':
  1136. income: 4.0
  1137. points: 4.0
  1138. experience: 5.0
  1139. Black:
  1140. income: 4.0
  1141. points: 4.0
  1142. experience: 5.0
  1143. Brown:
  1144. income: 4.0
  1145. points: 4.0
  1146. experience: 5.0
  1147. Purple:
  1148. income: 4.0
  1149. points: 4.0
  1150. experience: 5.0
  1151. Cyan:
  1152. income: 4.0
  1153. points: 4.0
  1154. experience: 5.0
  1155. Gray:
  1156. income: 4.0
  1157. points: 4.0
  1158. experience: 5.0
  1159. 'Lime Green':
  1160. income: 4.0
  1161. points: 4.0
  1162. experience: 5.0
  1163. Milk:
  1164. Cow:
  1165. income: 5.0
  1166. points: 5.0
  1167. experience: 5.0
  1168. Break:
  1169. CHORUS_PLANT:
  1170. income: 1.5
  1171. points: 1.5
  1172. experience: 3.0
  1173. CHORUS_FLOWER:
  1174. income: 1.5
  1175. points: 1.5
  1176. experience: 3.0
  1177. BEETROOT_BLOCK-3:
  1178. income: 1.5
  1179. points: 1.5
  1180. experience: 3.0
  1181. CROPS-7:
  1182. income: 1.5
  1183. points: 1.5
  1184. experience: 3.0
  1185. CARROT-7:
  1186. income: 1.0
  1187. points: 1.0
  1188. experience: 1.0
  1189. POTATO-7:
  1190. income: 1.0
  1191. points: 1.0
  1192. experience: 1.0
  1193. PUMPKIN:
  1194. income: 0.5
  1195. points: 0.5
  1196. experience: 1.0
  1197. SUGAR_CANE_BLOCK:
  1198. income: 0.2
  1199. points: 0.2
  1200. experience: 0.2
  1201. COCOA-4:
  1202. income: 4
  1203. points: 4
  1204. experience: 4.0
  1205. '6':
  1206. income: 2
  1207. points: 2
  1208. experience: 2.0
  1209. '111':
  1210. income: 2
  1211. points: 2
  1212. experience: 2.0
  1213. '37':
  1214. income: 2
  1215. points: 2
  1216. experience: 2.0
  1217. '38':
  1218. income: 2
  1219. points: 2
  1220. experience: 2.0
  1221. '39':
  1222. income: 1
  1223. points: 1
  1224. experience: 1.0
  1225. '40':
  1226. income: 1
  1227. points: 1
  1228. experience: 1.0
  1229. '106':
  1230. income: 1
  1231. points: 1
  1232. experience: 1.0
  1233. '81':
  1234. income: 1
  1235. points: 1
  1236. experience: 1.0
  1237. '115':
  1238. income: 1
  1239. points: 1
  1240. experience: 1.0
  1241. Place:
  1242. CROPS-0:
  1243. income: 3.0
  1244. points: 3
  1245. experience: 3.0
  1246. SUGAR_CANE_BLOCK:
  1247. income: 1.0
  1248. points: 1
  1249. experience: 1.0
  1250. Kill:
  1251. Player:
  1252. income: 7.5
  1253. points: 7.5
  1254. experience: 7.5
  1255. max-level: 200
  1256. Hunter:
  1257. fullname: Hunter
  1258. shortname: H
  1259. description: Earns money killing animals and monsters.
  1260. ChatColour: RED
  1261. chat-display: full
  1262. #max-level: 10
  1263. #slots: 10
  1264. leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  1265. income-progression-equation: baseincome+(joblevel-1)*0.01-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1266. points-progression-equation: basepoints+(joblevel-1)*0.01-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1267. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  1268. Gui:
  1269. Id: 261
  1270. Data: 0
  1271. Tame:
  1272. Wolf:
  1273. income: 20.0
  1274. points: 20
  1275. experience: 15.0
  1276. Ocelot:
  1277. income: 20.0
  1278. points: 20
  1279. experience: 15.0
  1280. Horse:
  1281. income: 20.0
  1282. points: 20
  1283. experience: 15.0
  1284. Kill:
  1285. Chicken:
  1286. income: 5.0
  1287. points: 5
  1288. experience: 5.0
  1289. Cow:
  1290. income: 6.0
  1291. points: 5
  1292. experience: 5.0
  1293. Pig:
  1294. income: 5.0
  1295. points: 5
  1296. experience: 5.0
  1297. Sheep:
  1298. income: 5.0
  1299. points: 5
  1300. experience: 5.0
  1301. Wolf:
  1302. income: 10.0
  1303. points: 10
  1304. experience: 5.0
  1305. Creeper:
  1306. income: 15.0
  1307. points: 15
  1308. experience: 15.0
  1309. Skeleton:
  1310. income: 10.0
  1311. points: 10
  1312. experience: 15.0
  1313. Spider:
  1314. income: 10.0
  1315. points: 10
  1316. experience: 15.0
  1317. Zombie:
  1318. income: 10.0
  1319. points: 10
  1320. experience: 15.0
  1321. BLAZE:
  1322. income: 20.0
  1323. points: 20
  1324. experience: 15.0
  1325. CAVE_SPIDER:
  1326. income: 20.0
  1327. points: 20
  1328. experience: 15.0
  1329. ENDERMAN:
  1330. income: 2.0
  1331. points: 2
  1332. experience: 2.0
  1333. GHAST:
  1334. income: 30.0
  1335. points: 30
  1336. experience: 30.0
  1337. GIANT:
  1338. income: 250.0
  1339. points: 250
  1340. experience: 100.0
  1341. IRON_GOLEM:
  1342. income: 30.0
  1343. points: 30
  1344. experience: 30.0
  1345. MUSHROOM_COW:
  1346. income: 5.0
  1347. points: 5
  1348. experience: 5.0
  1349. PIG_ZOMBIE:
  1350. income: 5.0
  1351. points: 5
  1352. experience: 5.0
  1353. SILVERFISH:
  1354. income: 3.0
  1355. points: 3
  1356. experience: 5.0
  1357. SNOWMAN:
  1358. income: 2.0
  1359. points: 2
  1360. experience: 4.0
  1361. SQUID:
  1362. income: 2.0
  1363. points: 2
  1364. experience: 2.0
  1365. RABBIT:
  1366. income: 2.0
  1367. points: 2
  1368. experience: 2.0
  1369. GUARDIAN:
  1370. income: 2.0
  1371. points: 2
  1372. experience: 2.0
  1373. SHULKER:
  1374. income: 5.0
  1375. points: 5
  1376. experience: 5.0
  1377. WITHER:
  1378. income: 50.0
  1379. points: 50
  1380. experience: 120.0
  1381. ENDER_DRAGON:
  1382. income: 2000.0
  1383. points: 2000
  1384. experience: 2000.0
  1385. Player:
  1386. income: 9.0
  1387. points: 9
  1388. experience: 7.5
  1389. max-level: 200
  1390. Explorer:
  1391. fullname: Explorer
  1392. shortname: Ex
  1393. description: Earns money from exploring map.
  1394. ChatColour: AQUA
  1395. chat-display: full
  1396. #max-level: 10
  1397. #slots: 10
  1398. leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  1399. income-progression-equation: baseincome+(joblevel-1)*0.01-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1400. points-progression-equation: basepoints+(joblevel-1)*0.01-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1401. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  1402. Gui:
  1403. Id: 301
  1404. Data: 0
  1405. Explore:
  1406. 1:
  1407. income: 5.0
  1408. points: 5
  1409. experience: 5.0
  1410. 2:
  1411. income: 2.5
  1412. points: 2.5
  1413. experience: 2.5
  1414. 3:
  1415. income: 1.0
  1416. points: 1.0
  1417. experience: 1.0
  1418. 4:
  1419. income: 0.5
  1420. points: 0.5
  1421. experience: 0.5
  1422. 5:
  1423. income: 0.1
  1424. points: 0.1
  1425. experience: 0.1
  1426. Kill:
  1427. Player:
  1428. income: 7.5
  1429. experience: 7.5
  1430. max-level: 200
  1431. Crafter:
  1432. fullname: Crafter
  1433. shortname: Cr
  1434. description: Earns money from crafting items.
  1435. ChatColour: RED
  1436. chat-display: full
  1437. #max-level: 10
  1438. #slots: 10
  1439. leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  1440. income-progression-equation: baseincome+(joblevel-1)*0.01-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1441. points-progression-equation: basepoints+(joblevel-1)*0.01-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1442. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  1443. Gui:
  1444. Id: 61
  1445. Data: 0
  1446. Craft:
  1447. '280':
  1448. income: 0.1
  1449. points: 0.1
  1450. experience: 0.1
  1451. '23':
  1452. income: 4.0
  1453. points: 4.0
  1454. experience: 4.0
  1455. '25':
  1456. income: 1.5
  1457. points: 1.5
  1458. experience: 3.0
  1459. '27':
  1460. income: 5.0
  1461. points: 5
  1462. experience: 5.0
  1463. '28':
  1464. income: 5.0
  1465. points: 4.0
  1466. experience: 5.0
  1467. '29':
  1468. income: 3.0
  1469. points: 3.0
  1470. experience: 3.0
  1471. 'tnt':
  1472. income: 4.0
  1473. points: 4.0
  1474. experience: 4.0
  1475. 'chest':
  1476. income: 1.3
  1477. points: 1.3
  1478. experience: 1.3
  1479. '58':
  1480. income: 0.7
  1481. points: 0.7
  1482. experience: 1.0
  1483. '61':
  1484. income: 1.0
  1485. points: 1.0
  1486. experience: 1.0
  1487. '65':
  1488. income: 0.1
  1489. points: 0.1
  1490. experience: 0.1
  1491. '66':
  1492. income: 1.1
  1493. points: 1.0
  1494. experience: 1.1
  1495. '84':
  1496. income: 10.0
  1497. points: 10.0
  1498. experience: 20.0
  1499. '95':
  1500. income: 0.3
  1501. points: 0.3
  1502. experience: 0.3
  1503. '108':
  1504. income: 2.5
  1505. points: 2.5
  1506. experience: 3.0
  1507. '109':
  1508. income: 0.5
  1509. points: 0.5
  1510. experience: 0.5
  1511. '116':
  1512. income: 30.0
  1513. points: 30.0
  1514. experience: 40.0
  1515. '138':
  1516. income: 100.0
  1517. points: 100.0
  1518. experience: 300.0
  1519. '145':
  1520. income: 20.0
  1521. points: 20.0
  1522. experience: 25.0
  1523. '146':
  1524. income: 1.5
  1525. points: 1.5
  1526. experience: 1.5
  1527. '147':
  1528. income: 3.0
  1529. points: 3.0
  1530. experience: 3.0
  1531. '148':
  1532. income: 2.5
  1533. points: 2.5
  1534. experience: 2.5
  1535. '151':
  1536. income: 2.5
  1537. points: 2.5
  1538. experience: 2.5
  1539. 'hopper':
  1540. income: 7.0
  1541. points: 7.0
  1542. experience: 7.0
  1543. '157':
  1544. income: 4.0
  1545. points: 4.0
  1546. experience: 4.0
  1547. '158':
  1548. income: 2.0
  1549. points: 2.0
  1550. experience: 3.0
  1551. '159':
  1552. income: 1.5
  1553. points: 1.5
  1554. experience: 1.5
  1555. '160':
  1556. income: 0.2
  1557. points: 0.2
  1558. experience: 0.2
  1559. '165':
  1560. income: 1.0
  1561. points: 1.0
  1562. experience: 1.0
  1563. '168':
  1564. income: 3.0
  1565. points: 3.0
  1566. experience: 3.0
  1567. '169':
  1568. income: 10.0
  1569. points: 10.0
  1570. experience: 10.0
  1571. '183':
  1572. income: 0.5
  1573. points: 0.5
  1574. experience: 0.5
  1575. '184':
  1576. income: 0.5
  1577. points: 0.5
  1578. experience: 0.5
  1579. '185':
  1580. income: 0.5
  1581. points: 0.5
  1582. experience: 0.5
  1583. '186':
  1584. income: 0.5
  1585. points: 0.5
  1586. experience: 0.5
  1587. '187':
  1588. income: 0.5
  1589. points: 0.5
  1590. experience: 0.5
  1591. '188':
  1592. income: 0.5
  1593. points: 0.5
  1594. experience: 0.5
  1595. '189':
  1596. income: 0.5
  1597. points: 0.5
  1598. experience: 0.5
  1599. '190':
  1600. income: 0.5
  1601. points: 0.5
  1602. experience: 0.5
  1603. '191':
  1604. income: 0.5
  1605. points: 0.5
  1606. experience: 0.5
  1607. '192':
  1608. income: 0.5
  1609. points: 0.5
  1610. experience: 0.5
  1611. '324':
  1612. income: 0.5
  1613. points: 0.5
  1614. experience: 0.5
  1615. '330':
  1616. income: 8.0
  1617. points: 8.0
  1618. experience: 8.0
  1619. '340':
  1620. income: 1.0
  1621. points: 1.0
  1622. experience: 1.0
  1623. '345':
  1624. income: 4.0
  1625. points: 4.0
  1626. experience: 7.0
  1627. '347':
  1628. income: 7.0
  1629. points: 7.0
  1630. experience: 7.0
  1631. '354':
  1632. income: 8.0
  1633. points: 8.0
  1634. experience: 10.0
  1635. '355':
  1636. income: 3.0
  1637. points: 3.0
  1638. experience: 3.0
  1639. '379':
  1640. income: 2.8
  1641. points: 2.8
  1642. experience: 3.5
  1643. '380':
  1644. income: 7.0
  1645. points: 7.0
  1646. experience: 7.0
  1647. '427':
  1648. income: 0.15
  1649. points: 0.15
  1650. experience: 0.15
  1651. '428':
  1652. income: 0.15
  1653. points: 0.15
  1654. experience: 0.15
  1655. '429':
  1656. income: 0.15
  1657. points: 0.15
  1658. experience: 0.15
  1659. '430':
  1660. income: 0.15
  1661. points: 0.15
  1662. experience: 0.15
  1663. '431':
  1664. income: 0.15
  1665. points: 0.15
  1666. experience: 0.15
  1667. Smelt:
  1668. COOKED_CHICKEN:
  1669. income: 3.0
  1670. points: 3.0
  1671. experience: 3.0
  1672. Kill:
  1673. Player:
  1674. income: 7.5
  1675. points: 7.5
  1676. experience: 7.5
  1677. max-level: 200
  1678. Fisherman:
  1679. fullname: Fisherman
  1680. shortname: Fi
  1681. description: Earns money from fishing.
  1682. ChatColour: AQUA
  1683. chat-display: full
  1684. #max-level: 10
  1685. #slots: 10
  1686. leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  1687. income-progression-equation: baseincome+(joblevel-1)*0.01-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1688. points-progression-equation: basepoints+(joblevel-1)*0.01-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1689. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  1690. Gui:
  1691. Id: 346
  1692. Data: 0
  1693. Fish:
  1694. '349-0':
  1695. income: 15.0
  1696. points: 15.0
  1697. experience: 15.0
  1698. '349-1':
  1699. income: 20.0
  1700. points: 20.0
  1701. experience: 25.0
  1702. '349-2':
  1703. income: 25.0
  1704. points: 25.0
  1705. experience: 25.0
  1706. '349-3':
  1707. income: 25.0
  1708. points: 25.0
  1709. experience: 25.0
  1710. Kill:
  1711. Player:
  1712. income: 7.5
  1713. points: 7.5
  1714. experience: 7.5
  1715. max-level: 200
  1716. Weaponsmith:
  1717. fullname: Weaponsmith
  1718. shortname: W
  1719. description: Earns money from crafting and repairing weapons.
  1720. ChatColour: DARK_PURPLE
  1721. chat-display: full
  1722. #max-level: 10
  1723. #slots: 10
  1724. leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  1725. income-progression-equation: baseincome+(joblevel-1)*0.01-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1726. points-progression-equation: basepoints+(joblevel-1)*0.01-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1727. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  1728. Gui:
  1729. Id: 58
  1730. Data: 0
  1731. Craft:
  1732. WOOD_SWORD:
  1733. income: 1.0
  1734. points: 1.0
  1735. experience: 2.0
  1736. LEATHER_BOOTS:
  1737. income: 3.0
  1738. points: 3.0
  1739. experience: 4.0
  1740. LEATHER_CHESTPLATE:
  1741. income: 4.0
  1742. points: 4.0
  1743. experience: 8.0
  1744. LEATHER_HELMET:
  1745. income: 2.5
  1746. points: 2.5
  1747. experience: 5.0
  1748. LEATHER_LEGGINGS:
  1749. income: 3.5
  1750. points: 3.5
  1751. experience: 7.0
  1752. IRON_SWORD:
  1753. income: 4.0
  1754. points: 4.0
  1755. experience: 8.0
  1756. IRON_BOOTS:
  1757. income: 8.0
  1758. points: 8.0
  1759. experience: 16.0
  1760. IRON_CHESTPLATE:
  1761. income: 16.0
  1762. points: 16.0
  1763. experience: 32.0
  1764. IRON_HELMET:
  1765. income: 10.0
  1766. points: 10.0
  1767. experience: 20.0
  1768. IRON_LEGGINGS:
  1769. income: 14.0
  1770. points: 14.0
  1771. experience: 28.0
  1772. GOLD_SWORD:
  1773. income: 6.0
  1774. points: 6.0
  1775. experience: 12.0
  1776. GOLD_BOOTS:
  1777. income: 12.0
  1778. points: 12.0
  1779. experience: 24.0
  1780. GOLD_CHESTPLATE:
  1781. income: 24.0
  1782. points: 24.0
  1783. experience: 48.0
  1784. GOLD_HELMET:
  1785. income: 15.0
  1786. points: 15.0
  1787. experience: 30.0
  1788. GOLD_LEGGINGS:
  1789. income: 21.0
  1790. points: 21.0
  1791. experience: 42.0
  1792. DIAMOND_SWORD:
  1793. income: 8.0
  1794. points: 8.0
  1795. experience: 16.0
  1796. DIAMOND_PICKAXE:
  1797. income: 12.0
  1798. points: 12.0
  1799. experience: 24.0
  1800. DIAMOND_AXE:
  1801. income: 12.0
  1802. points: 12.0
  1803. experience: 24.0
  1804. DIAMOND_HELMET:
  1805. income: 20.0
  1806. points: 20.0
  1807. experience: 40.0
  1808. DIAMOND_CHESTPLATE:
  1809. income: 32.0
  1810. points: 32.0
  1811. experience: 64.0
  1812. DIAMOND_LEGGINGS:
  1813. income: 28.0
  1814. points: 28.0
  1815. experience: 40.0
  1816. DIAMOND_BOOTS:
  1817. income: 16.0
  1818. points: 16.0
  1819. experience: 32.0
  1820. Repair:
  1821. WOOD_SWORD:
  1822. income: 1.0
  1823. points: 1.0
  1824. experience: 1.0
  1825. IRON_SWORD:
  1826. income: 2.0
  1827. points: 2.0
  1828. experience: 2.0
  1829. GOLD_SWORD:
  1830. income: 3.0
  1831. points: 3.0
  1832. experience: 3.0
  1833. DIAMOND_SWORD:
  1834. income: 4.0
  1835. points: 4.0
  1836. experience: 4.0
  1837. Smelt:
  1838. IRON_INGOT:
  1839. income: 1.3
  1840. points: 1.3
  1841. experience: 2.0
  1842. GOLD_INGOT:
  1843. income: 5.0
  1844. points: 5.0
  1845. experience: 10
  1846. DIAMOND:
  1847. income: 7.0
  1848. points: 7.0
  1849. experience: 20
  1850. max-level: 200
  1851. Brewer:
  1852. fullname: Brewer
  1853. shortname: Br
  1854. description: Earns money brewing potions.
  1855. ChatColour: LIGHT_PURPLE
  1856. chat-display: full
  1857. leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  1858. income-progression-equation: baseincome+(joblevel-1)*0.01-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1859. points-progression-equation: basepoints+(joblevel-1)*0.01-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1860. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  1861. Gui:
  1862. Id: 379
  1863. Data: 0
  1864. Brew:
  1865. NETHER_STALK:
  1866. income: 6.0
  1867. points: 6.0
  1868. experience: 6.0
  1869. REDSTONE:
  1870. income: 6.0
  1871. points: 6.0
  1872. experience: 6.0
  1873. GLOWSTONE_DUST:
  1874. income: 8.0
  1875. points: 8.0
  1876. experience: 8.0
  1877. SPIDER_EYE:
  1878. income: 9.0
  1879. points: 9.0
  1880. experience: 9.0
  1881. FERMENTED_SPIDER_EYE:
  1882. income: 12.0
  1883. points: 12.0
  1884. experience: 12.0
  1885. BLAZE_POWDER:
  1886. income: 12.0
  1887. points: 12.0
  1888. experience: 12.0
  1889. SUGAR:
  1890. income: 7.0
  1891. points: 7.0
  1892. experience: 7.0
  1893. SPECKLED_MELON:
  1894. income: 10.0
  1895. points: 10.0
  1896. experience: 10.0
  1897. MAGMA_CREAM:
  1898. income: 12.0
  1899. points: 12.0
  1900. experience: 12.0
  1901. GHAST_TEAR:
  1902. income: 22.0
  1903. points: 22.0
  1904. experience: 22.0
  1905. GOLDEN_CARROT:
  1906. income: 14.0
  1907. points: 14.0
  1908. experience: 14.0
  1909. 349-3:
  1910. income: 14.0
  1911. points: 14.0
  1912. experience: 14.0
  1913. RABBIT_FOOT:
  1914. income: 18.0
  1915. points: 18.0
  1916. experience: 18.0
  1917. max-level: 200
  1918. Enchanter:
  1919. fullname: Enchanter
  1920. shortname: E
  1921. description: Earns money enchanting weapons.
  1922. ChatColour: DARK_BLUE
  1923. chat-display: full
  1924. #max-level: 10
  1925. #slots: 10
  1926. leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  1927. income-progression-equation: baseincome+(joblevel-1)*0.01-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1928. points-progression-equation: basepoints+(joblevel-1)*0.01-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1929. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  1930. Gui:
  1931. Id: 116
  1932. Data: 0
  1933. Enchant:
  1934. WOOD_SWORD:
  1935. income: 1.5
  1936. points: 1.5
  1937. experience: 3.0
  1938. LEATHER_BOOTS:
  1939. income: 1.0
  1940. points: 1.0
  1941. experience: 6.0
  1942. LEATHER_CHESTPLATE:
  1943. income: 2.0
  1944. points: 2.0
  1945. experience: 6.0
  1946. LEATHER_HELMET:
  1947. income: 1.0
  1948. points: 1.0
  1949. experience: 6.0
  1950. LEATHER_LEGGINGS:
  1951. income: 2.0
  1952. points: 2.0
  1953. experience: 6.0
  1954. IRON_SWORD:
  1955. income: 3.0
  1956. points: 3.0
  1957. experience: 6.0
  1958. IRON_BOOTS:
  1959. income: 2.5
  1960. points: 2.5
  1961. experience: 9.0
  1962. IRON_CHESTPLATE:
  1963. income: 4.5
  1964. points: 4.5
  1965. experience: 9.0
  1966. IRON_HELMET:
  1967. income: 2.5
  1968. points: 2.5
  1969. experience: 9.0
  1970. IRON_LEGGINGS:
  1971. income: 4.5
  1972. points: 4.5
  1973. experience: 9.0
  1974. GOLD_SWORD:
  1975. income: 4.5
  1976. points: 4.5
  1977. experience: 15.0
  1978. GOLD_BOOTS:
  1979. income: 2.5
  1980. points: 2.5
  1981. experience: 15.0
  1982. GOLD_CHESTPLATE:
  1983. income: 5.5
  1984. points: 5.5
  1985. experience: 15.0
  1986. GOLD_HELMET:
  1987. income: 2.5
  1988. points: 2.5
  1989. experience: 15.0
  1990. GOLD_LEGGINGS:
  1991. income: 5.5
  1992. points: 5.5
  1993. experience: 15.0
  1994. DIAMOND_SWORD:
  1995. income: 9.0
  1996. points: 9.0
  1997. experience: 30.0
  1998. DIAMOND_SPADE:
  1999. income: 5.0
  2000. points: 5.0
  2001. experience: 30.0
  2002. DIAMOND_PICKAXE:
  2003. income: 10.0
  2004. points: 10.0
  2005. experience: 30.0
  2006. DIAMOND_AXE:
  2007. income: 10.0
  2008. points: 10.0
  2009. experience: 30.0
  2010. DIAMOND_HELMET:
  2011. income: 6.0
  2012. points: 6.0
  2013. experience: 30.0
  2014. DIAMOND_CHESTPLATE:
  2015. income: 12.0
  2016. points: 12.0
  2017. experience: 50.0
  2018. DIAMOND_LEGGINGS:
  2019. income: 12.0
  2020. points: 12.0
  2021. experience: 50.0
  2022. DIAMOND_BOOTS:
  2023. income: 6.0
  2024. points: 6.0
  2025. experience: 30.0
  2026. ARROW_DAMAGE-1:
  2027. income: 10.0
  2028. points: 10.0
  2029. experience: 10.0
  2030. ARROW_DAMAGE-2:
  2031. income: 20.0
  2032. points: 20.0
  2033. experience: 20.0
  2034. ARROW_DAMAGE-3:
  2035. income: 30.0
  2036. points: 30.0
  2037. experience: 30.0
  2038. ARROW_DAMAGE-4:
  2039. income: 40.0
  2040. points: 40.0
  2041. experience: 40.0
  2042. ARROW_DAMAGE-5:
  2043. income: 50.0
  2044. points: 50.0
  2045. experience: 50.0
  2046. ARROW_FIRE:
  2047. income: 10.0
  2048. points: 10.0
  2049. experience: 30.0
  2050. ARROW_INFINITE:
  2051. income: 20.0
  2052. points: 20.0
  2053. experience: 50.0
  2054. ARROW_KNOCKBACK-1:
  2055. income: 10.0
  2056. points: 10.0
  2057. experience: 10.0
  2058. ARROW_KNOCKBACK-2:
  2059. income: 20.0
  2060. points: 20.0
  2061. experience: 20.0
  2062. DAMAGE_ALL-1:
  2063. income: 10.0
  2064. points: 10.0
  2065. experience: 10.0
  2066. DAMAGE_ALL-2:
  2067. income: 20.0
  2068. points: 20.0
  2069. experience: 20.0
  2070. DAMAGE_ALL-3:
  2071. income: 30.0
  2072. points: 30.0
  2073. experience: 30.0
  2074. DAMAGE_ALL-4:
  2075. income: 40.0
  2076. points: 40.0
  2077. experience: 40.0
  2078. DAMAGE_ALL-5:
  2079. income: 50.0
  2080. points: 50.0
  2081. experience: 50.0
  2082. DAMAGE_ARTHROPODS-1:
  2083. income: 10.0
  2084. points: 10.0
  2085. experience: 10.0
  2086. DAMAGE_ARTHROPODS-2:
  2087. income: 20.0
  2088. points: 20.0
  2089. experience: 20.0
  2090. DAMAGE_ARTHROPODS-3:
  2091. income: 30.0
  2092. points: 30.0
  2093. experience: 30.0
  2094. DAMAGE_ARTHROPODS-4:
  2095. income: 40.0
  2096. points: 40.0
  2097. experience: 40.0
  2098. DAMAGE_ARTHROPODS-5:
  2099. income: 50.0
  2100. points: 50.0
  2101. experience: 50.0
  2102. DAMAGE_UNDEAD-1:
  2103. income: 10.0
  2104. points: 10.0
  2105. experience: 10.0
  2106. DAMAGE_UNDEAD-2:
  2107. income: 20.0
  2108. points: 20.0
  2109. experience: 20.0
  2110. DAMAGE_UNDEAD-3:
  2111. income: 30.0
  2112. points: 30.0
  2113. experience: 30.0
  2114. DAMAGE_UNDEAD-4:
  2115. income: 40.0
  2116. points: 40.0
  2117. experience: 40.0
  2118. DAMAGE_UNDEAD-5:
  2119. income: 50.0
  2120. points: 50.0
  2121. experience: 50.0
  2122. DEPTH_STRIDER-1:
  2123. income: 10.0
  2124. points: 10.0
  2125. experience: 10.0
  2126. DEPTH_STRIDER-2:
  2127. income: 20.0
  2128. points: 20.0
  2129. experience: 20.0
  2130. DEPTH_STRIDER-3:
  2131. income: 30.0
  2132. points: 30.0
  2133. experience: 30.0
  2134. DIG_SPEED-1:
  2135. income: 10.0
  2136. points: 10.0
  2137. experience: 10.0
  2138. DIG_SPEED-2:
  2139. income: 20.0
  2140. points: 20.0
  2141. experience: 20.0
  2142. DIG_SPEED-3:
  2143. income: 30.0
  2144. points: 30.0
  2145. experience: 30.0
  2146. DIG_SPEED-4:
  2147. income: 40.0
  2148. points: 40.0
  2149. experience: 40.0
  2150. DIG_SPEED-5:
  2151. income: 50.0
  2152. points: 50.0
  2153. experience: 50.0
  2154. DURABILITY-1:
  2155. income: 10.0
  2156. points: 10.0
  2157. experience: 10.0
  2158. DURABILITY-2:
  2159. income: 20.0
  2160. points: 20.0
  2161. experience: 20.0
  2162. DURABILITY-3:
  2163. income: 30.0
  2164. points: 30.0
  2165. experience: 30.0
  2166. FIRE_ASPECT-1:
  2167. income: 10.0
  2168. points: 10.0
  2169. experience: 10.0
  2170. FIRE_ASPECT-2:
  2171. income: 20.0
  2172. points: 20.0
  2173. experience: 20.0
  2174. KNOCKBACK-1:
  2175. income: 10.0
  2176. points: 10.0
  2177. experience: 10.0
  2178. KNOCKBACK-2:
  2179. income: 20.0
  2180. points: 20.0
  2181. experience: 20.0
  2182. LOOT_BONUS_BLOCKS-1:
  2183. income: 20.0
  2184. points: 20.0
  2185. experience: 100.0
  2186. LOOT_BONUS_BLOCKS-2:
  2187. income: 40.0
  2188. points: 40.0
  2189. experience: 200.0
  2190. LOOT_BONUS_BLOCKS-3:
  2191. income: 80.0
  2192. points: 80.0
  2193. experience: 300.0
  2194. LOOT_BONUS_MOBS-1:
  2195. income: 10.0
  2196. points: 10.0
  2197. experience: 20.0
  2198. LOOT_BONUS_MOBS-2:
  2199. income: 20.0
  2200. points: 20.0
  2201. experience: 40.0
  2202. LOOT_BONUS_MOBS-3:
  2203. income: 30.0
  2204. points: 30.0
  2205. experience: 60.0
  2206. LUCK-1:
  2207. income: 15.0
  2208. points: 15.0
  2209. experience: 10.0
  2210. LUCK-2:
  2211. income: 25.0
  2212. points: 25.0
  2213. experience: 20.0
  2214. LUCK-3:
  2215. income: 35.0
  2216. points: 35.0
  2217. experience: 30.0
  2218. LURE-1:
  2219. income: 10.0
  2220. points: 10.0
  2221. experience: 10.0
  2222. LURE-2:
  2223. income: 20.0
  2224. points: 20.0
  2225. experience: 20.0
  2226. LURE-3:
  2227. income: 30.0
  2228. points: 30.0
  2229. experience: 30.0
  2230. OXYGEN-1:
  2231. income: 10.0
  2232. points: 10.0
  2233. experience: 10.0
  2234. OXYGEN-2:
  2235. income: 20.0
  2236. points: 20.0
  2237. experience: 20.0
  2238. OXYGEN-3:
  2239. income: 30.0
  2240. points: 30.0
  2241. experience: 30.0
  2242. PROTECTION_ENVIRONMENTAL-1:
  2243. income: 10.0
  2244. points: 10.0
  2245. experience: 10.0
  2246. PROTECTION_ENVIRONMENTAL-2:
  2247. income: 20.0
  2248. points: 20.0
  2249. experience: 20.0
  2250. PROTECTION_ENVIRONMENTAL-3:
  2251. income: 30.0
  2252. points: 30.0
  2253. experience: 30.0
  2254. PROTECTION_ENVIRONMENTAL-4:
  2255. income: 40.0
  2256. points: 40.0
  2257. experience: 40.0
  2258. PROTECTION_EXPLOSIONS-1:
  2259. income: 10.0
  2260. points: 10.0
  2261. experience: 10.0
  2262. PROTECTION_EXPLOSIONS-2:
  2263. income: 20.0
  2264. points: 20.0
  2265. experience: 20.0
  2266. PROTECTION_EXPLOSIONS-3:
  2267. income: 30.0
  2268. points: 30.0
  2269. experience: 30.0
  2270. PROTECTION_EXPLOSIONS-4:
  2271. income: 40.0
  2272. points: 40.0
  2273. experience: 40.0
  2274. PROTECTION_FALL-1:
  2275. income: 10.0
  2276. points: 10.0
  2277. experience: 10.0
  2278. PROTECTION_FALL-2:
  2279. income: 20.0
  2280. points: 20.0
  2281. experience: 20.0
  2282. PROTECTION_FALL-3:
  2283. income: 30.0
  2284. points: 30.0
  2285. experience: 30.0
  2286. PROTECTION_FALL-4:
  2287. income: 40.0
  2288. points: 40.0
  2289. experience: 40.0
  2290. PROTECTION_FIRE-1:
  2291. income: 5.0
  2292. points: 5.0
  2293. experience: 10.0
  2294. PROTECTION_FIRE-2:
  2295. income: 10.0
  2296. points: 10.0
  2297. experience: 20.0
  2298. PROTECTION_FIRE-3:
  2299. income: 20.0
  2300. points: 20.0
  2301. experience: 30.0
  2302. PROTECTION_FIRE-4:
  2303. income: 30.0
  2304. points: 30.0
  2305. experience: 40.0
  2306. PROTECTION_PROJECTILE-1:
  2307. income: 10.0
  2308. points: 10.0
  2309. experience: 10.0
  2310. PROTECTION_PROJECTILE-2:
  2311. income: 20.0
  2312. points: 20.0
  2313. experience: 20.0
  2314. PROTECTION_PROJECTILE-3:
  2315. income: 30.0
  2316. points: 30.0
  2317. experience: 30.0
  2318. PROTECTION_PROJECTILE-4:
  2319. income: 40.0
  2320. points: 40.0
  2321. experience: 40.0
  2322. SILK_TOUCH:
  2323. income: 100.0
  2324. points: 100.0
  2325. experience: 300.0
  2326. THORNS-1:
  2327. income: 10.0
  2328. points: 10.0
  2329. experience: 10.0
  2330. THORNS-2:
  2331. income: 20.0
  2332. points: 20.0
  2333. experience: 20.0
  2334. THORNS-3:
  2335. income: 30.0
  2336. points: 30.0
  2337. experience: 30.0
  2338. WATER_WORKER:
  2339. income: 30.0
  2340. points: 30.0
  2341. experience: 100.0
  2342. max-level: 200
  2343. None:
  2344. fullname: None
  2345. shortname: N
  2346. ChatColour: WHITE
  2347. chat-display: none
  2348. #max-level: 10
  2349. #slots: 10
  2350. leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  2351. income-progression-equation: baseincome+(joblevel-1)*0.01-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  2352. points-progression-equation: basepoints+(joblevel-1)*0.01-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  2353. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  2354. Kill:
  2355. Player:
  2356. income: 7.5
Add Comment
Please, Sign In to add comment