Guest User

Untitled

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