Advertisement
Guest User

Untitled

a guest
Jul 14th, 2018
678
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 76.13 KB | None | 0 0
  1.  
  2. # ########################################################################
  3. # Example of a mob configuration of rewards for killing a mob.
  4. # ########################################################################
  5. # Here is where you set the base prize in $ for killing a mob of each type
  6. # You can either set a decimal number ex 1.23 or a range 1.23:2.23
  7. #
  8. # For each kill you can run a console command to give the player a reward.
  9. # You can use the following variables:
  10. # {killer},{killed},{player},{killed_player},{prize},{world},
  11. # {killerpos},{killedpos}. Killerpos and Killedpos will have the
  12. # format <x> <y> <z>. Which could be used to /summon items.
  13. # An example could be /summon apple {killedpos} 2. to summon two apples where
  14. # where the mob was killed or /summon apple {killerpos} 1. to summon an
  15. # an apple where the player is.
  16. # Another example could be to give the player permission to fly
  17. # for 1 hour or use give command to the player items.
  18. #
  19. # You can also specify the message send to the player.
  20. # The text can be color coded with these codes:
  21. # http://minecraft.gamepedia.com/Formatting_codes
  22. #
  23. # You can run many console commands on each line, each command
  24. # must be separated by |
  25. # The player will have the cmd run in {mob_cmd_run_chance} times in average. If mob_cmd_run_chance=0 it
  26. # will never run. If f.ex. mob_cmd_run_chance=0.50 and it will run run every second time in average.
  27. #
  28. # The mobname_head_prize is only used if you want the dropped heads after killing a mob to have a value.
  29. # Please also check the "dropmoneyonground" section in this file.
  30. example:
  31. mobname:
  32.  
  33. # Enable MobHunting rewards for this mob (true or false)
  34. enabled: true
  35.  
  36. # The message you want when this mob is killed
  37. message: The Mobname dropped {prize} BagOfGold.
  38. money:
  39.  
  40. # The amount of money you want to be dropped / paid
  41. amount: '10.0'
  42.  
  43. # The chance to drop/pay the amount of money (0-1)
  44. chance: 1.0
  45.  
  46. # You can use any command you want, each command has some options.
  47. # 'cmd:' and 'chance:' is mandatory fields, 'message:' 'message_type:' and 'permission:' is optional
  48. # If you add a permission, the command will only be run if the player has this permission.
  49. # message_type can be: Chat, ActionBar, BossBar, Title, Subtitle. Default/Fallback is Chat. The words
  50. # are case sensitive and you you will need a supporting plugin. Ex. TitleManager,ActionBar,BossBar
  51. commands:
  52. - chance: '0.5'
  53. cmd: pex user {player} add any.permission {world}
  54. message: 'You got permission to do ..... '
  55. - chance: '0.2'
  56. cmd: give {player} Iron_ingot 1
  57. message: You got an iron ingot!
  58. - chance: '1'
  59. cmd: say {player} killed an {killed}
  60. message: You killed an §1{killed}
  61. head:
  62.  
  63. # Set to true or false if you want a head to be dropped as a reward
  64. drophead: true
  65.  
  66. # The value you want the head to have when dropped
  67. value: '5'
  68.  
  69. # The chance to drop a head (a number between 0 and 1
  70. chance: 0.5
  71.  
  72. # The message you want when a head is dropped
  73. message: §aThe §1{killed} §adropped a skull on the ground
  74.  
  75. # ########################################################################
  76. # Rewards for killing mobs.
  77. # ########################################################################
  78. # Here is where you set the rewards for killing agressive mobs.
  79. mobs:
  80.  
  81. # ### Blaze settings ###
  82. blaze:
  83. enabled: true
  84. message: ''
  85. money:
  86. amount: '0:1.85'
  87. chance: 1.0
  88. commands: []
  89. head:
  90. drophead: true
  91. value: '0'
  92. chance: 0.02
  93. message: ''
  94.  
  95. # ### Cave Spider settings ###
  96. cave_spider:
  97. enabled: true
  98. message: ''
  99. money:
  100. amount: '0:0.85'
  101. chance: 1.0
  102. commands: []
  103. head:
  104. drophead: true
  105. value: '0'
  106. chance: 0.08
  107. message: ''
  108.  
  109. # ### Creeper settings ###
  110. creeper:
  111. enabled: true
  112. message: ''
  113. money:
  114. amount: '0:0.85'
  115. chance: 1.0
  116. commands: []
  117. head:
  118. drophead: true
  119. value: '0'
  120. chance: 0.07
  121. message: ''
  122.  
  123. # ### Elder Guardian settings ###
  124. elder_guardian:
  125. enabled: true
  126. message: ''
  127. money:
  128. amount: '0:3.15'
  129. chance: 1.0
  130. commands: []
  131. head:
  132. drophead: false
  133. value: '0'
  134. chance: 0.0
  135. message: ''
  136.  
  137. # ### Enderman settings ###
  138. enderman:
  139. enabled: true
  140. message: ''
  141. money:
  142. amount: 0.55:1.15
  143. chance: 1.0
  144. commands: []
  145. head:
  146. drophead: true
  147. value: '0'
  148. chance: 0.13
  149. message: ''
  150.  
  151. # ### Endermite settings ###
  152. endermite:
  153. enabled: true
  154. money:
  155. amount: '0:0.65'
  156. chance: 1.0
  157. commands: []
  158. head:
  159. drophead: true
  160. value: '0'
  161. chance: 0.04
  162. message: ''
  163.  
  164. # ### Ghast settings ###
  165. ghast:
  166. enabled: true
  167. message: ''
  168. money:
  169. amount: '0:0.95'
  170. chance: 1.0
  171. commands: []
  172. head:
  173. drophead: false
  174. value: '0'
  175. chance: 0.0
  176. message: ''
  177.  
  178. # ### Giant settings ###
  179. giant:
  180. enabled: true
  181. message: ''
  182. money:
  183. amount: 1.75:3.70
  184. chance: 1.0
  185. commands: []
  186. head:
  187. drophead: true
  188. value: '0'
  189. chance: 0.34
  190. message: ''
  191.  
  192. # ### Iron Golem settings ###
  193. iron_golem:
  194. enabled: true
  195. message: ''
  196. money:
  197. amount: 2.25:3.75
  198. chance: 0.0
  199. commands: []
  200. head:
  201. drophead: true
  202. value: '0'
  203. chance: 0.05
  204. message: ''
  205.  
  206. # ### Guardian settings ###
  207. guardian:
  208. enabled: true
  209. message: ''
  210. money:
  211. amount: '0:1.0'
  212. chance: 1.0
  213. commands: []
  214. head:
  215. drophead: true
  216. value: '0'
  217. chance: 0.17
  218. message: ''
  219.  
  220. # ### Husk settings ###
  221. husk:
  222. enabled: true
  223. message: ''
  224. money:
  225. amount: 0.20:1.10
  226. chance: 1.0
  227. commands: []
  228. head:
  229. drophead: true
  230. value: '0'
  231. chance: 0.15
  232. message: ''
  233.  
  234. # ### Killer Rabbit settings ###
  235. killer_rabbit:
  236. enabled: true
  237. message: ''
  238. money:
  239. amount: '0:0.25'
  240. chance: 1.0
  241. commands: []
  242. head:
  243. drophead: true
  244. value: '0'
  245. chance: 0.08
  246. message: ''
  247.  
  248. # ### Magma Cube settings ###
  249. magma_cube:
  250. enabled: true
  251. message: ''
  252. money:
  253. amount: '0:0.10'
  254. chance: 1.0
  255. commands: []
  256. head:
  257. drophead: false
  258. value: '0'
  259. chance: 0.0
  260. message: ''
  261.  
  262. # ### Polar Bear settings ###
  263. polar_bear:
  264. enabled: true
  265. message: ''
  266. money:
  267. amount: '0:1.75'
  268. chance: 1.0
  269. commands: []
  270. head:
  271. drophead: true
  272. value: '0'
  273. chance: 0.09
  274. message: ''
  275.  
  276. # ### Slime settings ###
  277. slime:
  278. enabled: true
  279. message: ''
  280. money:
  281. amount: '0:0.05'
  282. chance: 1.0
  283. commands: []
  284. head:
  285. drophead: false
  286. value: '0'
  287. chance: 0.0
  288. message: ''
  289.  
  290. # ### Shulker settings ###
  291. shulker:
  292. enabled: true
  293. message: ''
  294. money:
  295. amount: 1.50:7.25
  296. chance: 1.0
  297. commands: []
  298. head:
  299. drophead: true
  300. value: '0'
  301. chance: 0.01
  302. message: ''
  303.  
  304. # ### Silverfish settings ###
  305. silverfish:
  306. enabled: true
  307. message: ''
  308. money:
  309. amount: '0:0.25'
  310. chance: 1.0
  311. commands: []
  312. head:
  313. drophead: true
  314. value: '0'
  315. chance: 0.05
  316. message: ''
  317.  
  318. # ### Skeleton settings ###
  319. skeleton:
  320. enabled: true
  321. message: ''
  322. money:
  323. amount: '0:0.55'
  324. chance: 1.0
  325. commands: []
  326. head:
  327. drophead: true
  328. value: '0'
  329. chance: 0.01
  330. message: ''
  331.  
  332. # ### Spider settings ###
  333. spider:
  334. enabled: true
  335. message: ''
  336. money:
  337. amount: '0:0.75'
  338. chance: 1.0
  339. commands: []
  340. head:
  341. drophead: true
  342. value: '0'
  343. chance: 0.09
  344. message: ''
  345.  
  346. # ### Stray settings ###
  347. stray:
  348. enabled: true
  349. message: ''
  350. money:
  351. amount: 1.25:2.20
  352. chance: 1.0
  353. commands: []
  354. head:
  355. drophead: true
  356. value: '0'
  357. chance: 0.06
  358. message: ''
  359.  
  360. # ### Zombie settings ###
  361. zombie:
  362. enabled: true
  363. message: ''
  364. money:
  365. amount: 0.10:1.35
  366. chance: 1.0
  367. commands: []
  368. head:
  369. drophead: true
  370. value: '0'
  371. chance: 0.02
  372. message: ''
  373.  
  374. # ### Zombie Pigman settings ###
  375. zombie_pigman:
  376. enabled: true
  377. message: ''
  378. money:
  379. amount: 0.65:1.25
  380. chance: 1.0
  381. commands: []
  382. head:
  383. drophead: true
  384. value: '0'
  385. chance: 0.02
  386. message: ''
  387.  
  388. # ### Vex settings ###
  389. vex:
  390. enabled: true
  391. message: ''
  392. money:
  393. amount: '0:1.20'
  394. chance: 1.0
  395. commands: []
  396. head:
  397. drophead: true
  398. value: '0'
  399. chance: 0.05
  400. message: ''
  401.  
  402. # ### Witch settings ###
  403. witch:
  404. enabled: true
  405. message: ''
  406. money:
  407. amount: 0.55:1.85
  408. chance: 1.0
  409. commands: []
  410. head:
  411. drophead: true
  412. value: '0'
  413. chance: 0.05
  414. message: ''
  415.  
  416. # ### Wither Skeleton settings ###
  417. wither_skeleton:
  418. enabled: true
  419. message: ''
  420. money:
  421. amount: '0:1.35'
  422. chance: 1.0
  423. commands: []
  424. head:
  425. drophead: true
  426. value: '0'
  427. chance: 0.05
  428. message: ''
  429.  
  430. # ########################################################################
  431. # Rewards for killing bosses
  432. # ########################################################################
  433. # Here is where you set the base prize in $ for killing the bosses
  434. boss:
  435.  
  436. # ### Wither settings ###
  437. wither:
  438. enabled: true
  439. message: ''
  440. money:
  441. amount: 85.25:275.15
  442. chance: 1.0
  443. commands: []
  444. head:
  445. drophead: true
  446. value: '0'
  447. chance: 1.0
  448. message: ''
  449.  
  450. # ### Ender Dragon settings ###
  451. ender_dragon:
  452. enabled: true
  453. message: ''
  454. money:
  455. amount: 175.75:385.35
  456. chance: 1.0
  457. commands: []
  458. head:
  459. drophead: true
  460. value: '0'
  461. chance: 1.0
  462. message: ''
  463.  
  464. # ########################################################################
  465. # Rewards for killing villagers
  466. # ########################################################################
  467. # Here is where you set the base prize in $ for killing the villagers
  468. # MobHunting only handle Villagers on profession level, all careers is
  469. # handles as their profession. Info anbout Profession and Caarer:
  470. # http://minecraft.gamepedia.com/Villager#Professions_and_careers
  471. villager:
  472.  
  473. # ### Blacksmith settings ###
  474. blacksmith:
  475. enabled: true
  476. message: ''
  477. money:
  478. amount: 0.45:1.35
  479. chance: 1.0
  480. commands: []
  481. head:
  482. drophead: true
  483. value: '0'
  484. chance: 0.05
  485. message: ''
  486.  
  487. # ### Butcher settings ###
  488. butcher:
  489. enabled: true
  490. message: ''
  491. money:
  492. amount: 0.45:1.35
  493. chance: 1.0
  494. commands: []
  495. head:
  496. drophead: true
  497. value: '0'
  498. chance: 0.05
  499. message: ''
  500.  
  501. # ### Evoker settings ###
  502. evoker:
  503. enabled: true
  504. message: ''
  505. money:
  506. amount: 1.15:2.65
  507. chance: 1.0
  508. commands: []
  509. head:
  510. drophead: true
  511. value: '0'
  512. chance: 0.08
  513. message: ''
  514.  
  515. # ### Farmer settings ###
  516. farmer:
  517. enabled: true
  518. message: ''
  519. money:
  520. amount: 0.45:1.35
  521. chance: 1.0
  522. commands: []
  523. head:
  524. drophead: true
  525. value: '0'
  526. chance: 0.05
  527. message: ''
  528.  
  529. # ### Illusioner settings ###
  530. illusioner:
  531. enabled: true
  532. message: ''
  533. money:
  534. amount: 1.25:2.95
  535. chance: 1.0
  536. commands: []
  537. head:
  538. drophead: true
  539. value: '0'
  540. chance: 0.07
  541. message: ''
  542. librarian:
  543. enabled: true
  544. message: ''
  545. money:
  546. amount: 0.45:1.35
  547. chance: 1.0
  548. commands: []
  549. head:
  550. drophead: true
  551. value: '0'
  552. chance: 0.05
  553. message: ''
  554.  
  555. # ### Nitwit settings ###
  556. nitwit:
  557. enabled: true
  558. message: ''
  559. money:
  560. amount: 0.45:1.35
  561. chance: 1.0
  562. commands: []
  563. head:
  564. drophead: true
  565. value: '0'
  566. chance: 0.05
  567. message: ''
  568.  
  569. # ### Priest settings ###
  570. priest:
  571. enabled: true
  572. message: ''
  573. money:
  574. amount: 0.45:1.35
  575. chance: 1.0
  576. commands: []
  577. head:
  578. drophead: true
  579. value: '0'
  580. chance: 0.05
  581. message: ''
  582.  
  583. # ### Villager settings ###
  584. villager:
  585. enabled: true
  586. message: ''
  587. money:
  588. amount: 0.45:1.35
  589. chance: 1.0
  590. commands: []
  591. head:
  592. drophead: true
  593. value: '0'
  594. chance: 0.05
  595. message: ''
  596.  
  597. # ### Vindicator settings ###
  598. vindicator:
  599. enabled: true
  600. message: ''
  601. money:
  602. amount: 0.25:1.35
  603. chance: 1.0
  604. commands: []
  605. head:
  606. drophead: true
  607. value: '0'
  608. chance: 0.15
  609. message: ''
  610.  
  611. # ### Zombie Villager settings ###
  612. zombie_villager:
  613. enabled: true
  614. message: ''
  615. money:
  616. amount: 0.10:1.35
  617. chance: 1.0
  618. commands: []
  619. head:
  620. drophead: true
  621. value: '0'
  622. chance: 0.02
  623. message: ''
  624.  
  625. # ########################################################################
  626. # Rewards for killing passive mobs
  627. # ########################################################################
  628. # Here is where you set the base prize in $ for killing passive/friendly mobs.
  629. # By default the player does not get a reward for killing friendly mobs.
  630. # If you make the number negative, the reward will be a fine for killing a passive animal.
  631. passive:
  632.  
  633. # ### Bat settings ###
  634. bat:
  635. enabled: true
  636. message: ''
  637. money:
  638. amount: '0:0.25'
  639. chance: 1.0
  640. commands: []
  641. head:
  642. drophead: true
  643. value: '0'
  644. chance: 0.05
  645. message: ''
  646.  
  647. # ### Chicken settings ###
  648. chicken:
  649. enabled: true
  650. message: ''
  651. money:
  652. amount: '0:0.10'
  653. chance: 1.0
  654. commands: []
  655. head:
  656. drophead: true
  657. value: '0'
  658. chance: 0.17
  659. message: ''
  660.  
  661. # ### Cow settings ###
  662. cow:
  663. enabled: true
  664. message: ''
  665. money:
  666. amount: '0:0.40'
  667. chance: 1.0
  668. commands: []
  669. head:
  670. drophead: true
  671. value: '0'
  672. chance: 0.01
  673. message: ''
  674.  
  675. # ### Donkey settings ###
  676. donkey:
  677. enabled: true
  678. message: ''
  679. money:
  680. amount: '0:0.65'
  681. chance: 1.0
  682. commands: []
  683. head:
  684. drophead: true
  685. value: '0'
  686. chance: 0.06
  687. message: ''
  688.  
  689. # ### Horse settings ###
  690. horse:
  691. enabled: true
  692. message: ''
  693. money:
  694. amount: '0:1.15'
  695. chance: 1.0
  696. commands: []
  697. head:
  698. drophead: true
  699. value: '0'
  700. chance: 0.06
  701. message: ''
  702.  
  703. # ### Llama settings ###
  704. llama:
  705. enabled: true
  706. message: ''
  707. money:
  708. amount: '0:1.05'
  709. chance: 1.0
  710. commands: []
  711. head:
  712. drophead: true
  713. value: '0'
  714. chance: 0.06
  715. message: ''
  716.  
  717. # ### Mule settings ###
  718. mule:
  719. enabled: true
  720. message: ''
  721. money:
  722. amount: '0:0.55'
  723. chance: 1.0
  724. commands: []
  725. head:
  726. drophead: true
  727. value: '0'
  728. chance: 0.06
  729. message: ''
  730.  
  731. # ### Mushroom Cow settings ###
  732. mushroom_cow:
  733. enabled: true
  734. message: ''
  735. money:
  736. amount: '0:0.95'
  737. chance: 1.0
  738. commands: []
  739. head:
  740. drophead: true
  741. value: '0'
  742. chance: 0.09
  743. message: ''
  744.  
  745. # ### Ocelot settings ###
  746. ocelot:
  747. enabled: true
  748. message: ''
  749. money:
  750. amount: '0:0.25'
  751. chance: 1.0
  752. commands: []
  753. head:
  754. drophead: true
  755. value: '0'
  756. chance: 0.07
  757. message: ''
  758.  
  759. # ### Parrot settings ###
  760. parrot:
  761. enabled: true
  762. message: ''
  763. money:
  764. amount: '0:0.15'
  765. chance: 1.0
  766. commands: []
  767. head:
  768. drophead: true
  769. value: '0'
  770. chance: 0.1
  771. message: ''
  772.  
  773. # ### Pig settings ###
  774. pig:
  775. enabled: true
  776. message: ''
  777. money:
  778. amount: '0:0.35'
  779. chance: 1.0
  780. commands: []
  781. head:
  782. drophead: true
  783. value: '0'
  784. chance: 0.01
  785. message: ''
  786.  
  787. # ### Rabbit settings ###
  788. rabbit:
  789. enabled: true
  790. message: ''
  791. money:
  792. amount: '0:0.15'
  793. chance: 1.0
  794. commands: []
  795. head:
  796. drophead: true
  797. value: '0'
  798. chance: 0.07
  799. message: ''
  800.  
  801. # ### Sheep settings ###
  802. sheep:
  803. enabled: true
  804. message: ''
  805. money:
  806. amount: '0:0.30'
  807. chance: 1.0
  808. commands: []
  809. head:
  810. drophead: true
  811. value: '0'
  812. chance: 0.01
  813. message: ''
  814.  
  815. # ### Skeleton Horse settings ###
  816. skeleton_horse:
  817. enabled: true
  818. message: ''
  819. money:
  820. amount: '0:1.25'
  821. chance: 1.0
  822. commands: []
  823. head:
  824. drophead: true
  825. value: '0'
  826. chance: 0.12
  827. message: ''
  828.  
  829. # ### Snowman settings ###
  830. snowman:
  831. enabled: true
  832. message: ''
  833. money:
  834. amount: '0:0.05'
  835. chance: 0.0
  836. commands: []
  837. head:
  838. drophead: false
  839. value: '0'
  840. chance: 0.0
  841. message: ''
  842.  
  843. # ### Squid settings ###
  844. squid:
  845. enabled: true
  846. message: ''
  847. money:
  848. amount: '0:0.10'
  849. chance: 1.0
  850. commands: []
  851. head:
  852. drophead: true
  853. value: '0'
  854. chance: 0.22
  855. message: ''
  856.  
  857. # ### Wolf settings ###
  858. wolf:
  859. enabled: true
  860. message: ''
  861. money:
  862. amount: '0:0.95'
  863. chance: 1.0
  864. commands: []
  865. head:
  866. drophead: true
  867. value: '0'
  868. chance: 0.15
  869. message: ''
  870.  
  871. # ### Zombie Horse settings ###
  872. zombie_horse:
  873. enabled: true
  874. message: ''
  875. money:
  876. amount: '0:1.25'
  877. chance: 1.0
  878. commands: []
  879. head:
  880. drophead: true
  881. value: '0'
  882. chance: 0.12
  883. message: ''
  884.  
  885. # ########################################################################
  886. # Rewards for fishing
  887. # ########################################################################
  888. # Here is where you set the base prize in $ for catching a fish
  889. fishing:
  890.  
  891. # Set this to true if you want to disable all fishing rewards / features.
  892. enable_fishing_rewards: false
  893.  
  894. # ### Raw Fish settings ###
  895. raw_fish:
  896. enabled: false
  897. message: ''
  898. money:
  899. amount: '0'
  900. chance: 0.0
  901. commands: []
  902. head:
  903. drophead: false
  904. value: '0'
  905. chance: 0.0
  906. message: ''
  907.  
  908. # ### Raw Salmon settings ###
  909. raw_salmon:
  910. enabled: false
  911. message: ''
  912. money:
  913. amount: '0'
  914. chance: 0.0
  915. commands: []
  916. head:
  917. drophead: false
  918. value: '0'
  919. chance: 0.0
  920. message: ''
  921.  
  922. # ### Clownfish settings ###
  923. clownfish:
  924. enabled: false
  925. message: ''
  926. money:
  927. amount: '0'
  928. chance: 0.0
  929. commands: []
  930. head:
  931. drophead: false
  932. value: '0'
  933. chance: 0.0
  934. message: ''
  935.  
  936. # ### Pufferfish settings ###
  937. pufferfish:
  938. enabled: false
  939. message: ''
  940. money:
  941. amount: '0'
  942. chance: 0.0
  943. commands: []
  944. head:
  945. drophead: false
  946. value: '0'
  947. chance: 0.0
  948. message: ''
  949.  
  950. # ########################################################################
  951. # Pvp rewards
  952. # ########################################################################
  953. # Pvp configuration. Set pvp_allowed = true if you want give the players a reward when they kill eachother.
  954. # You can alsp run a console command when this happens to give the player a reward or punish him.
  955. # You can you the following variables {player},{world},{killed_player}.
  956. # An example could be to give the player permission to fly
  957. # for 1 hour or use give command to the player items.
  958. # You can also specify the message send to the player.
  959. # You can run many console commands on each line, each command
  960. # must be separated by |
  961. pvp:
  962. player:
  963.  
  964. # Set pvpAllowed=false to disable rewards on killing other players.
  965. pvp_allowed: false
  966.  
  967. # Set rob_from_victim=true to steal from the victim or
  968. # rob_from_victim=false to get the reward money from the server.
  969. rob_from_victim: false
  970.  
  971. # Write the message to the killer, describing the reward / console commands
  972. message: ''
  973.  
  974. # The kill prize can be a number to steal x dollars from the killed player,
  975. # or it can be a cut in percent of his balance. Rob from victiom is about where the money comes from.
  976. # If FALSE the money comes from from the server, if TRUE the money comes from the dead player.
  977. # If you dont want the player to get any money for PVP kills, you MUST set pvp_kill_prize: 0
  978. money:
  979. amount: 10%
  980. chance: 1.0
  981.  
  982. # One or more console commands to be run when a player kills another player.
  983. commands: []
  984.  
  985. # Drop a head of the killed player
  986. head:
  987. drophead: true
  988.  
  989. # The Head price if you want playerheads to have a value like the bag of gold.
  990. value: '0'
  991. chance: 0.1
  992. message: ''
  993.  
  994. # ########################################################################
  995. # Special / Achievements rewards
  996. # ########################################################################
  997. # Here is where you set the prize in $ for achieving a special kill.
  998. # For each achievment you can run a console command to give the player a reward.
  999. # You can use the following variables {player},{world}, {killerpos},
  1000. # {monstertype} and more can be added on request.
  1001. # monstertype is the monstername. A valid list can be found in your
  1002. # lang file. Ex. if it is mobs.skeleton.name, monstertype will return skeleton
  1003. # An example command could be to give the player permission to fly
  1004. # for 1 hour or use give command to the player items.
  1005. # You can also specify the message send to the player.
  1006. # You can run many console commands on each line, each command
  1007. # must be separated by |
  1008. # Achievements will not be shown in the GUI if there is a reward for killing the mob,
  1009. # unless you set show_achievements_without_reward=true.
  1010. achievements:
  1011.  
  1012. # Put the names of the worlds here where you want to disable achievements.
  1013. # Players will still get rewards for killings.
  1014. disable_achievements_in_worlds:
  1015. - world
  1016. - world_nether
  1017. - world_the_end
  1018.  
  1019. # Set this to true if you want to see achievements when you use /mobhunt achievements
  1020. # allthough there is no reward for this.
  1021. show_achievements_without_reward: false
  1022.  
  1023. # ########################################################################
  1024. # ### Specials ###
  1025. # ########################################################################
  1026. specials:
  1027. charged_kill:
  1028. money: 0.0
  1029. commands: give {player} gold_ingot 1
  1030. message: ''
  1031. creeper_punch:
  1032. money: 0.0
  1033. commands: give {player} gold_ingot 1
  1034. message: ''
  1035. axe_murderer:
  1036. money: 0.0
  1037. commands: give {player} gold_ingot 1
  1038. message: ''
  1039. david_and_goliath:
  1040. money: 0.0
  1041. commands: give {player} diamond_helmet 1
  1042. message: ''
  1043. recordhungry:
  1044. money: 0.0
  1045. commands: give {player} gold_ingot 1
  1046. message: ''
  1047. infighting:
  1048. money: 0.0
  1049. commands: give {player} gold_ingot 1
  1050. messages: ''
  1051. by_the_book:
  1052. money: 0.0
  1053. commands: give {player} gold_ingot 1
  1054. message: ''
  1055. creepercide:
  1056. money: 0.0
  1057. commands: give {player} gold_ingot 1
  1058. message: ''
  1059. hunt_begins:
  1060. money: 0.0
  1061. commands: ''
  1062. message: ''
  1063. itsmagic:
  1064. money: 0.0
  1065. commands: give {player} gold_ingot 1
  1066. message: ''
  1067. fancypants:
  1068. money: 0.0
  1069. commands: give {player} gold_ingot 1
  1070. message: ''
  1071. master_sniper:
  1072. money: 0.0
  1073. commands: give {player} gold_ingot 1
  1074. message: ''
  1075. justintime:
  1076. money: 0.0
  1077. commands: give {player} gold_ingot 1
  1078. message: ''
  1079. fangmaster:
  1080. money: 0.0
  1081. commands: give {player} gold_ingot 1
  1082. message: ''
  1083.  
  1084. # ########################################################################
  1085. # ### Hunter Levels ###
  1086. # ########################################################################
  1087. hunter:
  1088. level1:
  1089. money: 0.0
  1090. commands: give {player} gold_ingot 5
  1091. message: ''
  1092. level2:
  1093. money: 0.0
  1094. commands: give {player} gold_ingot 10
  1095. message: ''
  1096. level3:
  1097. money: 0.0
  1098. commands: give {player} gold_ingot 20
  1099. message: ''
  1100. level4:
  1101. money: 0.0
  1102. commands: give {player} gold_ingot 25
  1103. message: ''
  1104. level5:
  1105. money: 0.0
  1106. commands: give {player} gold_ingot 40
  1107. message: ''
  1108. level6:
  1109. money: 0.0
  1110. commands: give {player} gold_ingot 50
  1111. message: ''
  1112. level7:
  1113. money: 0.0
  1114. commands: give {player} gold_ingot 60
  1115. message: ''
  1116. level8:
  1117. money: 0.0
  1118. commands: give {player} gold_ingot 120
  1119. message: ''
  1120.  
  1121. # Achievement Hunter Levels - First Mob level
  1122. # Here is where you set how many mobs to kill to reach next level per mob.
  1123. # You can only set the number of mobs to kill to reach level 1. the next
  1124. # levels is automatically calculated this way.
  1125. # Level 1: 100 (100 kills)
  1126. # Level 2: x 2.5 (250 kills)
  1127. # Level 3: x 5 (500 kills)
  1128. # Level 4: x 10 (1000 kills)
  1129. # Level 5: x 25 (2500 kills)
  1130. # Level 6: x 50 (5000 kills)
  1131. # Level 7: x 100 (10000 kills)
  1132. # Level Achievements can be disabled by setting the number to 0
  1133. mob_level:
  1134. bat_level1: 0
  1135. blaze_level1: 0
  1136. blacksmith_level1: 0
  1137. bonusmob_level1: 0
  1138. butcher_level1: 0
  1139. cartographer_level1: 0
  1140. cave_spider_level1: 0
  1141. chicken_level1: 0
  1142. clownfish_level1: 0
  1143. cow_level1: 0
  1144. creeper_level1: 0
  1145. donkey_level1: 0
  1146. elder_guardian_level1: 0
  1147. enderdragon_level1: 0
  1148. enderman_level1: 0
  1149. endermite_level1: 0
  1150. evoker_level1: 0
  1151. farmer_level1: 0
  1152. ghast_level1: 0
  1153. giant_level1: 0
  1154. guardian_level1: 0
  1155. horse_level1: 0
  1156. husk_level1: 0
  1157. illusioner_level1: 0
  1158. iron_golem_level1: 0
  1159. killerrabbit_level1: 0
  1160. librarian_level1: 0
  1161. llama_level1: 0
  1162. magma_cube_level1: 0
  1163. mule_level1: 0
  1164. mushroom_cow_level1: 0
  1165. nitwit_level1: 0
  1166. ocelot_level1: 0
  1167. parrot_level1: 0
  1168. pig_level1: 0
  1169. polar_bear_level1: 0
  1170. priest_level1: 0
  1171. pvpplayer_level1: 0
  1172. pufferfish_level1: 0
  1173. rabbit_level1: 0
  1174. rawfish_level1: 0
  1175. rawsalmon_level1: 0
  1176. sheep_level1: 0
  1177. shulker_level1: 0
  1178. silverfish_level1: 0
  1179. skeleton_level1: 0
  1180. skeletonhorse_level1: 0
  1181. slime_base_level1: 0
  1182. snowman_level1: 0
  1183. spider_level1: 0
  1184. squid_level1: 0
  1185. stray_level1: 0
  1186. vex_level1: 0
  1187. villager_level1: 0
  1188. vindicator_level1: 0
  1189. witch_level1: 0
  1190. wither_level1: 0
  1191. wither_skeleton_level1: 0
  1192. wolf_level1: 0
  1193. zombie_level1: 0
  1194. zombiehorse_level1: 0
  1195. zombie_pigman_level1: 0
  1196. zombie_villager_level1: 0
  1197.  
  1198. # ########################################################################
  1199. # Rewards for assisting killings
  1200. # ########################################################################
  1201. # They players can get an extra reward if they help each other killing mobs.
  1202. assists:
  1203.  
  1204. # Enabling assist allows the second last player to attack a mob to get some money from it
  1205. enable: false
  1206.  
  1207. # This should be a value that is multiplied against the mobs base kill value.
  1208. # This is used to determine how much money an assister gets.
  1209. multiplier: 0.0
  1210.  
  1211. # Should killstreak be applied to assists
  1212. allow_killstreak: false
  1213.  
  1214. # Time in seconds after attacking a mob that can be counted as an assist
  1215. timeout: 0
  1216.  
  1217. # ########################################################################
  1218. # Grinding detection settings
  1219. # ########################################################################
  1220. # Here you can chance the behavior of the grinding detection.
  1221. grinding:
  1222. enable_grinding_detection: true
  1223.  
  1224. # Put the names of the worlds here where you want to disable grinding detection
  1225. # You would typically do this in creative worlds.
  1226. disable_grinding_detection_in_worlds: []
  1227.  
  1228. # Killing stacked mobs (created by a mob stacking plugin)
  1229. # is by nature detected as grinding and by default allowed. If you want to the the grinding detection to detect
  1230. # killings of stacked to be detected as gring, you must set grinding_stacked_mobs_allowed to false.
  1231. grinding_stacked_mobs_allowed: true
  1232.  
  1233. # Area grinding detection.
  1234. # Enabling this prevents a player from earning too much money from using a mob grinder.
  1235. # Set 'enable_grinding_detection: false' to disable the grinding detection.
  1236. # OBS: You can whitelist an area to allow grinding using '/mobhunt whitelistarea <add|remove>'
  1237. # if the area is detected as a grinding area. See also '/mobhunt checkgrinding'
  1238. # For each kill MobHunting check the number of kills within the range
  1239. # If number of kills exceeds 10, the reward will decrese with 10% until the 'number of deaths'
  1240. # is reached, whereafter the reward will be zero.
  1241. area:
  1242. detect_grinding_areas: true
  1243. grinding_detection_range: 16
  1244. grinding_detection_number_of_death: 35
  1245. disable_natural_item_drops_on_player_grinding: true
  1246. disable_natural_xp_drops_on_player_grinding: true
  1247. blacklist_player_grinding_spots_as_server_worldwide_spots: false
  1248.  
  1249. # Detect Grinding Farms.
  1250. # When this is true, the plugin will try to detect if the players has build a Mob Grinding Farm.
  1251. # Farm detection can be completly disabled or you can whitelist an area using the whitelist
  1252. # command if you want the players to harvest mobs from a farm.
  1253. farms:
  1254. detect_farms: true
  1255. nether_gold_farms:
  1256. detect_nether_gold_farms: true
  1257. seconds_to_search_for_grinding: 30
  1258. range_to_search_for_grinding: 4.0
  1259. number_of_deaths_when_searching_for_grinding: 20
  1260. disable_natural_item_drops: true
  1261. disable_natural_xp_drops: true
  1262. otherfarms:
  1263. detect_other_farms: true
  1264. seconds_to_search_for_grinding: 30
  1265. range_to_search_for_grinding: 4.0
  1266. number_of_deaths_when_searching_for_grinding: 20
  1267. disable_natural_item_drops: true
  1268. disable_natural_xp_drops: true
  1269.  
  1270. # ########################################################################
  1271. # Multiplier Section
  1272. # ########################################################################
  1273. multiplier:
  1274.  
  1275. # ########################################################################
  1276. # Bonus multipliers
  1277. # ########################################################################
  1278. # These are bonus multipliers that can modify the base prize.
  1279. # REMEMBER: These are not in $ but they are a multiplier.
  1280. # Setting to 1 will disable them.
  1281. bonus:
  1282. sneaky: 1.0
  1283. return_to_sender: 1.0
  1284. push_off_cliff: 1.0
  1285. no_weapon: 1.0
  1286.  
  1287. # This is the PRO_Sniper bonus. The Sniper bonus is calulated as half of PRO_Sniper bonus.
  1288. # If If PRO Sniper (far_shot) is 2, then Sniper will be = 1+((far_shot_1)/2)=1.5
  1289. far_shot: 0.0
  1290. mounted: 1.0
  1291. friendly_fire: 1.0
  1292. bonus_mob: 1.0
  1293. bonusMob_head_prize: '0'
  1294. critical: 1.0
  1295.  
  1296. # This is the chance (% chance 0-100) that a bonus mob will spawn.
  1297. bonus_mob_chance: 0.0
  1298.  
  1299. # Bonus for killing a Baby mob.
  1300. babyMultiplier: 0.0
  1301.  
  1302. # ########################################################################
  1303. # Reward for kills in a row
  1304. # ########################################################################
  1305. # Set the multiplier when the player kills 1,2,3,4 mob in a row without getting damage.
  1306. # Killstreak will be disabled if you set the multiplier: 1.0
  1307. killstreak:
  1308. level1: 10
  1309. level1_multiplier: 1.0
  1310. level2: 20
  1311. level2_multiplier: 1.0
  1312. level3: 30
  1313. level3_multiplier: 1.0
  1314. level4: 40
  1315. level4_multiplier: 1.0
  1316.  
  1317. # ########################################################################
  1318. # Rank multipliers########################################################################
  1319. # You can add multipliers for players with different ranks/groups. To do this"
  1320. #
  1321. # you must set give the user/group permissions with a format like this:
  1322. # mobhunting.multiplier.guest
  1323. # mobhunting.multiplier.guardian
  1324. # mobhunting.multiplier.staff
  1325. # mobhunting.multiplier.hasVoted
  1326. # mobhunting.multiplier.donator
  1327. # mobhunting.multiplier.op <____ Notice 'op' is reserved for OP'ed players!
  1328. # OP'ed players will only get the OP multiplier
  1329. # you can make your own permission nodes. You just need to keep the format
  1330. # mobhunting.multiplier.name 'value' in your permissions file and the
  1331. # format below in this file.
  1332. rank:
  1333.  
  1334. # Ranks
  1335. rank_multiplier:
  1336. mobhunting:
  1337. multiplier: []
  1338.  
  1339. # ########################################################################
  1340. # Penalty multipliers
  1341. # ########################################################################
  1342. # You can chance the multiplier for different world difficulties.
  1343. # A player which play in a HARD world should get more that a player
  1344. # a player who is player in a peaceful world.The difficulty multipliers
  1345. # with the mobs basic reward.
  1346. # REMEMBER: These are not money, but a multiplier. Setting to 1 will disable them.
  1347. difficulty:
  1348.  
  1349. # This is the reward multiplier for the WorldDifficulty. Note that extrahard is
  1350. # used for worlds where the plugin ExtraHardMode is enabled.
  1351. world_difficulty_multiplier:
  1352. difficulty:
  1353. multiplier:
  1354. peaceful: '0'
  1355. hard: '0'
  1356. normal: '0'
  1357. easy: '0'
  1358. extrahard: '0'
  1359.  
  1360. # ########################################################################
  1361. # Penalty multipliers
  1362. # ########################################################################
  1363. # These are penalty multipliers that can modify the base prize.
  1364. # REMEMBER: These are not in $ but they are a multiplier.
  1365. # Setting to 1 will disable them.
  1366. penalty:
  1367.  
  1368. # If a player flies at any point in a fight, this penalty will be applied
  1369. flyingPenalty: 0.0
  1370.  
  1371. # This is the penalty if the player gets killed by a mob.
  1372. # Set mob_rob_from_player=10 to let the mob steal 10 dollars
  1373. # or 10% to let the mob steal 10% of the players balance.
  1374. # Set mob_rob_from_player=0 to disable this
  1375. mob_rob_from_player: 0%
  1376.  
  1377. # ########################################################################
  1378. # Bounty settings
  1379. # ########################################################################
  1380. # Here you can chance the behavior of the Bounty Command or you can disable
  1381. # the command completely.
  1382. bounties:
  1383.  
  1384. # Set to true if you want to disable players to be able to put bounties on each other.
  1385. enable_player_bounties: false
  1386.  
  1387. # Here you set how much of a bound the bounty owner get back if
  1388. # he drop the bounty on another player
  1389. bounty_return_pct: 0
  1390.  
  1391. # Here you set the number of days the Bounty is collectable.
  1392. # After the number of days the Bounty will be removed automatically
  1393. bounty_duration: 0
  1394.  
  1395. # Set enable_random_bounty=false to disable random bounties
  1396. enable_random_bounty: false
  1397.  
  1398. # Time between Random Bounty is created in minutes
  1399. time_between_random_bounties: 0
  1400.  
  1401. # Minimum number of players before the server starts to make random bounties
  1402. minimum_number_of_online_players: 0
  1403.  
  1404. # Chance that a bounty is created on a player after the minimum time. Must be a number between 0 and 1. (0 = never, 0.5 = 50% 1 = always)
  1405. chance_to_create_a_random_bounty: 0.0
  1406.  
  1407. # Random Bounty. Can be a number 100 or a range 100:200
  1408. random_bounty_prize: '0'
  1409.  
  1410. # ########################################################################
  1411. # Integration to other plugins.
  1412. # ########################################################################
  1413. plugins:
  1414.  
  1415. # ########################################################################
  1416. # Disguises rewards
  1417. # ########################################################################
  1418. # Here is where can define the actions when a player is under disguise (attacker)
  1419. # or when the attacked (victim)
  1420. disguises:
  1421.  
  1422. # Enable/disable integration with iDisguise
  1423. enable_integration_i_disguise: true
  1424.  
  1425. # Enable/disable integration with DisguiseCcraft
  1426. enable_integration_disguisecraft: true
  1427.  
  1428. # Enable/disable integration with LibsDisguises
  1429. enable_integration_libsdisguises: true
  1430.  
  1431. # Set pvpAllowed=false to disable rewards on killing other players.
  1432. remove_disguise_when_attacking: true
  1433.  
  1434. # Set pvpAllowed=false to disable rewards on killing other players.
  1435. remove_disguise_when_attacked: true
  1436.  
  1437. # Bonus multiplier for killing while disgused.
  1438. # Can be both positive an negative = reward or penalty
  1439. # and over and under 1 = raise or lower the reward.
  1440. undercover_multiplier: 1.0
  1441.  
  1442. # Bonus multiplier for killing a disgused player.
  1443. # Can be both positive an negative = reward or penalty
  1444. # and over and under 1 = raise or lower the reward.
  1445. cover_blown_multiplier: 1.0
  1446.  
  1447. # ########################################################################
  1448. # Citizens / MasterMobHunter settings.
  1449. # ########################################################################
  1450. citizens:
  1451.  
  1452. # Enable/disable integration with Citizens2
  1453. enable_integration_citizens: false
  1454.  
  1455. # Set the number of seconds between each check. Recommended setting is
  1456. # masterMobHunter_check_every: 300 ~ to update all MasterMobHunters every 5th minute.
  1457. # Be careful not to lower this number too much. It can cause lag and server crashes
  1458. # because of database lockings.
  1459. masterMobHunter_check_every: 0
  1460.  
  1461. # ########################################################################
  1462. # Stacked mobs settings
  1463. # ########################################################################
  1464. # Here you can chance the behavior of stacked mobs integration, or you can disable
  1465. # integration completely.
  1466. stackedmobs:
  1467. mobstacker:
  1468.  
  1469. # Enable/disable integration with MobStacker.
  1470. # https://www.spigotmc.org/resources/mobstacker.15596/
  1471. enable_integration_mobstacker: false
  1472. stackmob:
  1473.  
  1474. # Enable/disable integration with StackMob.
  1475. # https://www.spigotmc.org/resources/stackmob.29999/
  1476. enable_integration_stackmob: false
  1477.  
  1478. # Set to true if you want stacked mobs to pay a reward.
  1479. get_reward_from_stacked_mobs: true
  1480.  
  1481. # ########################################################################
  1482. # CustomMob settings
  1483. # ########################################################################
  1484. # Here you can chance the behavior of CustomMobs Integration, or you can disable
  1485. # integration completely.
  1486. # https://www.spigotmc.org/resources/custommobs.7339/
  1487. custommobs:
  1488.  
  1489. # Enable/disable integration with CustomMobs
  1490. # https://dev.bukkit.org/bukkit_plugins/custom_mobs/
  1491. enable_integration_custommobs: false
  1492.  
  1493. # Can the players earn money on mobs spawned from CustomMobs Spawners and eggs?
  1494. allow_custom_mobspawners_and_eggs: false
  1495.  
  1496. # ########################################################################
  1497. # InfernalMobs settings
  1498. # ########################################################################
  1499. # Here you can chance the behavior of InfernalMobs Integration, or you can disable
  1500. # integration completely.
  1501. # https://www.spigotmc.org/resources/infernal_mobs.2156/
  1502. infernalmobs:
  1503.  
  1504. # Enable/disable integration with InfernalMobs
  1505. enable_integration_infernalmobs: false
  1506.  
  1507. # For InfernalMobs mob prize is calculated by the minecraft reward x multiplier_per_level^Infernal_Level
  1508. # Ex.If multiplier=1.2 and level is 3 normal reward will be multiplied with 1.2*1.2*1.2=1,728
  1509. multiplier_per_level: 1.0
  1510.  
  1511. # ########################################################################
  1512. # InfernalMobs settings
  1513. # ########################################################################
  1514. # Here you can chance the behavior of EliteMobs Integration, or you can disable
  1515. # integration completely.
  1516. # https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
  1517. elitemobs:
  1518.  
  1519. # Enable/Disable integration with EliteMobs
  1520. enable_integration_elitemobs: true
  1521.  
  1522. # The reward for EliteMobs from level 50-400 will be multiplier linearly
  1523. maximum_multiplier: 2.0
  1524.  
  1525. # ########################################################################
  1526. # Level Mob Settings (Conquestian / LorinthsRPGMobs
  1527. # ########################################################################
  1528. levelmobs:
  1529. conquestia:
  1530.  
  1531. # Enable/disable integration with ConquestiaMobs
  1532. # https://www.spigotmc.org/resources/conquesita_mobs.21307/
  1533. enable_integration_conquestiamobs: false
  1534.  
  1535. # ########################################################################
  1536. # LorinthsRPGMobs
  1537. # ########################################################################Disable integration with LorinthsRpgMobs
  1538. # https://dev.bukkit.org/projects/lorinthsrpgmobs
  1539. lorinthsrpgmobs:
  1540. enable_integration_lorinthsrpgmobs: false
  1541.  
  1542. # This is the multiplier per level mutiplied with the basic reward.
  1543. # Becareful not to ruin the server economy by making the multiplier to big.
  1544. # Example: If the reward is 10 and the multiplier is 1.05, the calculated
  1545. # reward is:
  1546. # Level 1: reward=10
  1547. # Level 2: reward=10*1.05=10.5
  1548. # Level 3: reward=10*1.05*1.05=11.03
  1549. # Level 4: reward=10*1.05*1.05*1.05=11.58
  1550. # Level 5: reward=10*1.05*1.05*1.05*1.05=12.16
  1551. # Level 6: reward=10*1.05*1.05*1.05*1.05*1.05=12.76
  1552. # Level 7: reward=10*1.05*1.05*1.05*1.05*1.05*1.05=13.40
  1553. # Level 8: reward=10*1.05*1.05*1.05*1.05*1.05*1.05*1.05=14.07
  1554. # Level 9: reward=10*1.05*1.05*1.05*1.05*1.05*1.05*1.05*1.05=14.77
  1555. # Level 10: reward=10*1.05*1.05*1.05*.....=15.51
  1556. # Level 20: reward=10*1.05*1.05*1.05*.....=25..27
  1557. # Level 30: reward=10*1.05*1.05*1.05*.....=41.61
  1558. # Level 40: reward=10*1.05*1.05*1.05*.....=67.05
  1559. # Level 50: reward=10*1.05*1.05*1.05*.....=109.21
  1560. # Level 100: reward=10*1.05*1.05*1.05*.....=1252.39
  1561. multiplier_per_level: 1.0
  1562.  
  1563. # ########################################################################
  1564. # Factions / FactionsUUID settings
  1565. # ########################################################################
  1566. # Here you can chance the behavior of the Factions / FactionsUUID integration, or you can disable
  1567. # integration completely.
  1568. # https://www.spigotmc.org/resources/factions.1900/
  1569. # https://www.spigotmc.org/resources/factionsuuid.1035/
  1570. factions:
  1571.  
  1572. # Enable/disable integration with Factions.
  1573. # https://www.massivecraft.com/
  1574. # https://www.spigotmc.org/resources/factions.1900/
  1575. # https://www.spigotmc.org/resources/factionsuuid.1035/
  1576. enable_integration_factions: false
  1577.  
  1578. # This is the bonus when a player kills a mob or a player in a Factions WarZone.
  1579. factions_warzone_multiplier: 1.0
  1580.  
  1581. # ########################################################################
  1582. # Towny settings
  1583. # ########################################################################
  1584. # Here you can chance the behavior of the Towny integration, or you can disable
  1585. # integration completely.
  1586. # http://towny.palmergames.com/
  1587. towny:
  1588.  
  1589. # Enable/disable integration with Towny.
  1590. # http://towny.palmergames.com/
  1591. enable_integration_towny: false
  1592.  
  1593. # Disable rewards when the player is in his hometown.
  1594. # http://towny.palmergames.com/
  1595. disable_rewards_in_home_town: false
  1596.  
  1597. # Disable naturally drops and xp drops when the player kill mobs in his home town.
  1598. disable_naturally_drops_and_xp_in_home_town: false
  1599.  
  1600. # ########################################################################
  1601. # Towny settings
  1602. # ########################################################################
  1603. # Here you can chance the behavior of the Residence integration, or you can disable
  1604. # integration completely.
  1605. # https://www.spigotmc.org/resources/residence_1_7_10_up_to_1_11.11480/
  1606. residence:
  1607.  
  1608. # Enable/disable integration with Residence.
  1609. # http://towny.palmergames.com/
  1610. enable_integration_residence: false
  1611.  
  1612. # Disable rewards when the player is protected against damage.
  1613. # http://towny.palmergames.com/
  1614. disable_rewards_in_home_town: true
  1615.  
  1616. # Disable naturally drops and xp drops when the player kill mobs in his home town.
  1617. disable_naturally_drops_and_xp_in_protected_residence: false
  1618.  
  1619. # ########################################################################
  1620. # Integration to McMMO
  1621. # ########################################################################
  1622. # This section only relevant if you use McMMO.
  1623. # Here you configure if the player will get McMMO Levels for MobHunting kills and
  1624. # and the chance to get the xp.
  1625. mcmmo:
  1626.  
  1627. # Enable/disable the integration with McMMO.
  1628. # https://www.spigotmc.org/resources/mcmmo.2445/
  1629. enable_integration_mcmmo: false
  1630.  
  1631. # Set 'enable_mcmmo_level_rewards: true' to let the players get Level as a MobHunting reward.
  1632. enable_mcmmo_level_rewards: false
  1633. mobs:
  1634. bat:
  1635. skillreward_amount: '0'
  1636. skillreward_chance: 0.0
  1637. blacksmith:
  1638. skillreward_amount: '0'
  1639. skillreward_chance: 0.0
  1640. blaze:
  1641. skillreward_amount: '0'
  1642. skillreward_chance: 0.0
  1643. bonusmob:
  1644. skillreward_amount: '0'
  1645. skillreward_chance: 0.0
  1646. butcher:
  1647. skillreward_amount: '0'
  1648. skillreward_chance: 0.0
  1649. cartographer:
  1650. skillreward_amount: '0'
  1651. skillreward_chance: 0.0
  1652. cave_spider:
  1653. skillreward_amount: '0'
  1654. skillreward_chance: 0.0
  1655. chicken:
  1656. skillreward_amount: '0'
  1657. skillreward_chance: 0.0
  1658. clownfish:
  1659. skillreward_amount: '0'
  1660. skillreward_chance: 0.0
  1661. cow:
  1662. skillreward_amount: '0'
  1663. skillreward_chance: 0.0
  1664. creeper:
  1665. skillreward_amount: '0'
  1666. skillreward_chance: 0.0
  1667. donkey:
  1668. skillreward_amount: '0'
  1669. skillreward_chance: 0.0
  1670. elder_guardian:
  1671. skillreward_amount: '0'
  1672. skillreward_chance: 0.0
  1673. enderdragon:
  1674. skillreward_amount: '0'
  1675. skillreward_chance: 0.0
  1676. enderman:
  1677. skillreward_amount: '0'
  1678. skillreward_chance: 0.0
  1679. endermite:
  1680. skillreward_amount: '0'
  1681. skillreward_chance: 0.0
  1682. evoker:
  1683. skillreward_amount: '0'
  1684. skillreward_chance: 0.0
  1685. farmer:
  1686. skillreward_amount: '0'
  1687. skillreward_chance: 0.0
  1688. ghast:
  1689. skillreward_amount: '0'
  1690. skillreward_chance: 0.0
  1691. giant:
  1692. skillreward_amount: '0'
  1693. skillreward_chance: 0.0
  1694. guardian:
  1695. skillreward_amount: '0'
  1696. skillreward_chance: 0.0
  1697. horse:
  1698. skillreward_amount: '0'
  1699. skillreward_chance: 0.0
  1700. husk:
  1701. skillreward_amount: '0'
  1702. skillreward_chance: 0.0
  1703. illusioner:
  1704. skillreward_amount: '0'
  1705. skillreward_chance: 0.0
  1706. iron_golem:
  1707. skillreward_amount: '0'
  1708. killer_rabbit:
  1709. skillreward_amount: '0'
  1710. skillreward_chance: 0.0
  1711. llama:
  1712. skillreward_amount: '0'
  1713. skillreward_chance: 0.0
  1714. librarian:
  1715. skillreward_amount: '0'
  1716. skillreward_chance: 0.0
  1717. magma_cube:
  1718. skillreward_amount: '0'
  1719. skillreward_chance: 0.0
  1720. mule:
  1721. skillreward_amount: '0'
  1722. skillreward_chance: 0.0
  1723. mushroom_cow:
  1724. skillreward_amount: '0'
  1725. skillreward_chance: 0.0
  1726. nitwit:
  1727. skillreward_amount: '0'
  1728. skillreward_chance: 0.0
  1729. ocelot:
  1730. skillreward_amount: '0'
  1731. skillreward_chance: 0.0
  1732. parrot:
  1733. skillreward_amount: '0'
  1734. skillreward_chance: 0.0
  1735. pig:
  1736. skillreward_amount: '0'
  1737. skillreward_chance: 0.0
  1738. polar_bear:
  1739. skillreward_amount: '0'
  1740. skillreward_chance: 0.0
  1741. priest:
  1742. skillreward_amount: '0'
  1743. skillreward_chance: 0.0
  1744. pufferfish:
  1745. skillreward_amount: '0'
  1746. skillreward_chance: 0.0
  1747. pvpplayer:
  1748. skillreward_amount: '0'
  1749. skillreward_chance: 0.0
  1750. rabbit:
  1751. skillreward_amount: '0'
  1752. skillreward_chance: 0.0
  1753. raw_fish:
  1754. skillreward_amount: '0'
  1755. skillreward_chance: 0.0
  1756. raw_salmon:
  1757. skillreward_amount: '0'
  1758. skillreward_chance: 0.0
  1759. sheep:
  1760. skillreward_amount: '0'
  1761. skillreward_chance: 0.0
  1762. shulker:
  1763. skillreward_amount: '0'
  1764. skillreward_chance: 0.0
  1765. silverfish:
  1766. skillreward_amount: '0'
  1767. skillreward_chance: 0.0
  1768. skeleton:
  1769. skillreward_amount: '0'
  1770. skillreward_chance: 0.0
  1771. skeletonhorse:
  1772. skillreward_amount: '0'
  1773. skillreward_chance: 0.0
  1774. slime_base:
  1775. skillreward_amount: '0'
  1776. skillreward_chance: 0.0
  1777. snowman:
  1778. skillreward_amount: '0'
  1779. skillreward_chance: 0.0
  1780. spider:
  1781. skillreward_amount: '0'
  1782. skillreward_chance: 0.0
  1783. squid:
  1784. skillreward_amount: '0'
  1785. skillreward_chance: 0.0
  1786. stray:
  1787. skillreward_amount: '0'
  1788. skillreward_chance: 0.0
  1789. vex:
  1790. skillreward_amount: '0'
  1791. skillreward_chance: 0.0
  1792. villager:
  1793. skillreward_amount: '0'
  1794. skillreward_chance: 0.0
  1795. vindicator:
  1796. skillreward_amount: '0'
  1797. skillreward_chance: 0.0
  1798. witch:
  1799. skillreward_amount: '0'
  1800. skillreward_chance: 0.0
  1801. wither:
  1802. skillreward_amount: '0'
  1803. skillreward_chance: 0.0
  1804. wither_skeleton:
  1805. skillreward_amount: '0'
  1806. skillreward_chance: 0.0
  1807. wolf:
  1808. skillreward_amount: '0'
  1809. skillreward_chance: 0.0
  1810. zombie:
  1811. skillreward_amount: '0'
  1812. skillreward_chance: 0.0
  1813. zombiehorse:
  1814. skillreward_amount: '0'
  1815. skillreward_chance: 0.0
  1816. zombie_villager:
  1817. skillreward_amount: '0'
  1818. skillreward_chance: 0.0
  1819. zombie_pigman:
  1820. skillreward_amount: '0'
  1821. skillreward_chance: 0.0
  1822. mcmmov:
  1823. iron_golem:
  1824. skillreward_chance: 0.0
  1825.  
  1826. # ########################################################################
  1827. # Integration to CrackShot
  1828. # ########################################################################
  1829. # This section only relevant if you use CrackShot.
  1830. # Here you configure if the player will get a multiplier for using a CrackShot weapon
  1831. crackshot:
  1832.  
  1833. # Enable/disable integration with CrackShot.
  1834. # https://dev.bukkit.org/projects/crackshot
  1835. enable_integration_crackshot: false
  1836.  
  1837. # Multiplier used when a Crackshot weapon was used to kill a mob or a player
  1838. crackshot_multiplier: 0.0
  1839.  
  1840. # ########################################################################
  1841. # MobArena
  1842. # ########################################################################
  1843. mobarena:
  1844.  
  1845. # Enable/Disable integration with MobArena
  1846. enable_integration_mobarena: false
  1847.  
  1848. # Set to true if you want the players to get rewards while playing MobArena.
  1849. mobarena_get_rewards: false
  1850.  
  1851. # ########################################################################
  1852. # PVPArena
  1853. # ########################################################################
  1854. # Here is where can configure how mobhunting acts when killing players while playing PvpArena
  1855. pvparena:
  1856.  
  1857. # Enable/Disable integration with PvpArena
  1858. enable_integration_pvparena: false
  1859.  
  1860. # Set to true if you want the players to get rewards while playing pvpArena.
  1861. pvparena_get_rewards: false
  1862.  
  1863. # ########################################################################
  1864. # MythicMobs
  1865. # ########################################################################
  1866. mythicmobs:
  1867.  
  1868. # Enable/Disable integration with MythicMobs
  1869. enable_integration_mythicmobs: false
  1870.  
  1871. # ########################################################################
  1872. # MyPet
  1873. # ########################################################################
  1874. mypet:
  1875.  
  1876. # Enable/Disable integration with MyPet
  1877. enable_integration_mypet: false
  1878.  
  1879. # ########################################################################
  1880. # Minigames
  1881. # ########################################################################
  1882. minigames:
  1883.  
  1884. # Enable/Disable integration with MiniGames
  1885. enable_integration_minigames: false
  1886.  
  1887. # ########################################################################
  1888. # MinigamesLib
  1889. # ########################################################################
  1890. minigameslib:
  1891.  
  1892. # Enable/Disable integration with MiniGamesLib
  1893. # https://www.spigotmc.org/resources/minigameslib.23844/
  1894. enable_integration_minigameslib: false
  1895.  
  1896. # ########################################################################
  1897. # Worldguard
  1898. # ########################################################################
  1899. worldguard:
  1900.  
  1901. # Enable/Disable integration with WorldGuard
  1902. enable_integration_worldguard: true
  1903.  
  1904. # ########################################################################
  1905. # Essentials
  1906. # ########################################################################
  1907. essentials:
  1908.  
  1909. # Enable/Disable integration with Essentials
  1910. # http://dev.bukkit.org/bukkit_plugins/essentialsx/
  1911. enable_integration_essentials: true
  1912.  
  1913. # ########################################################################
  1914. # BattleArena
  1915. # ########################################################################
  1916. battlearena:
  1917.  
  1918. # Enable/Disable integration with BattleArena
  1919. enable_integration_battlearena: false
  1920.  
  1921. # ########################################################################
  1922. # BossBarAPI
  1923. # ########################################################################
  1924. bossbarapi:
  1925.  
  1926. # Enable/Disable integration with BossBarAPI. If you want messages in player chat you can set this to true.
  1927. enable_integration_bossbarapi: false
  1928.  
  1929. # ########################################################################
  1930. # BarApi
  1931. # ########################################################################
  1932. barapi:
  1933.  
  1934. # Enable/Disable integration with BarAPI. If you want messages in player chat you can set this to true.
  1935. # https://dev.bukkit.org/projects/bar_api
  1936. enable_integration_barapi: false
  1937.  
  1938. # ########################################################################
  1939. # TitleApi
  1940. # ########################################################################
  1941. titleapi:
  1942.  
  1943. # Enable/Disable integration with TitleAPI
  1944. enable_integration_titleapi: false
  1945.  
  1946. # ########################################################################
  1947. # VanishNoPackets
  1948. # ########################################################################
  1949. vanishnopacket:
  1950.  
  1951. # Enable/Disable integration with VanishNoPacket
  1952. enable_integration_vanishnopacket: false
  1953.  
  1954. # ########################################################################
  1955. # Titlemanager
  1956. # ########################################################################
  1957. titlemanager:
  1958.  
  1959. # Enable/Disable integration with TitleManger. If you want messages in player chat you can set this to true.
  1960. # https://www.spigotmc.org/resources/titlemanager.1049/
  1961. enable_integration_titlemanager: false
  1962.  
  1963. # ########################################################################
  1964. # Actionbar
  1965. # ########################################################################
  1966. actionbar:
  1967.  
  1968. # Enable/Disable integration with Actionbar. If you want messages in player chat you can set this to true.
  1969. enable_integration_actionbar: false
  1970.  
  1971. # ########################################################################
  1972. # ActionbarAPI
  1973. # ########################################################################
  1974. actionbarapi:
  1975.  
  1976. # Enable/Disable integration with ActionBarAPI. If you want messages in player chat you can set this to true.
  1977. # https://www.spigotmc.org/resources/actionbarapi_1_8_1_9_1_10.1315/
  1978. enable_integration_actionbarapi: false
  1979.  
  1980. # ########################################################################
  1981. # ActionAnnouncer
  1982. # ########################################################################
  1983. actionannouncer:
  1984.  
  1985. # Enable/Disable integration with ActionAnnouncer. If you want messages in player chat you can set this to true.
  1986. # https://www.spigotmc.org/resources/actionannouncer.1320/
  1987. enable_integration_actionannouncer: false
  1988.  
  1989. # ########################################################################
  1990. # Gringotts
  1991. # ########################################################################
  1992. gringotts:
  1993.  
  1994. # Enable/Disable integration with Gringotts Economy.
  1995. # http://dev.bukkit.org/bukkit_plugins/gringotts/
  1996. enable_integration_gringotts: false
  1997.  
  1998. # ########################################################################
  1999. # TARDIS Weeping Angels
  2000. # ########################################################################
  2001. tardis_weepingangles:
  2002.  
  2003. # Enable/Disable integration with TARDIS Weeping Angels.
  2004. # http://dev.bukkit.org/bukkit_plugins/tardisweepingangels/
  2005. enable_integration_tardis_weeping_angels: false
  2006.  
  2007. # ########################################################################
  2008. # ProtocolLib
  2009. # ########################################################################
  2010. protocollib:
  2011.  
  2012. # Enable/Disable integration with ProtocolLib.
  2013. # https://www.spigotmc.org/resources/protocollib.1997/
  2014. enable_integration_protocollib: true
  2015.  
  2016. # ########################################################################
  2017. # MysterousHalloween
  2018. # ########################################################################
  2019. mysterious_halloween:
  2020.  
  2021. # Enable/Disable integration with MysteriousHalloween.
  2022. # https://www.spigotmc.org/resources/mysterioushalloween.13059/
  2023. enable_integration_mysterious_halloween: false
  2024.  
  2025. # ########################################################################
  2026. # SmartGiants
  2027. # ########################################################################
  2028. smartgiants:
  2029.  
  2030. # Enable/Disable integration with SmartGiants.
  2031. # https://www.spigotmc.org/threads/smartgiants.55208/
  2032. enable_integration_smartgiants: false
  2033.  
  2034. # ########################################################################
  2035. # PlaceholderApi
  2036. # ########################################################################
  2037. placeholderapi:
  2038.  
  2039. # Enable/Disable integration with PlaceholderAPI.
  2040. # https://www.spigotmc.org/resources/placeholderapi.6245/
  2041. enable_integration_placeholderapi: true
  2042.  
  2043. # ########################################################################
  2044. # BossShop
  2045. # ########################################################################
  2046. bossshop:
  2047.  
  2048. # Enable/Disable integration with BossShop.
  2049. # https://www.spigotmc.org/resources/bossshop_powerful_and_playerfriendly_chest_gui_shop_menu_plugin.222/
  2050. enable_integration_bossshop: true
  2051.  
  2052. # ########################################################################
  2053. # ExtraHardMode
  2054. # ########################################################################
  2055. extra_hard_mode:
  2056.  
  2057. # Enable/Disable integration with ExtraHardmode.
  2058. # https://www.spigotmc.org/resources/extra_hard_mode.19673/
  2059. enable_integration_extra_hard_mode: false
  2060.  
  2061. # ########################################################################
  2062. # Herobrine
  2063. # ########################################################################
  2064. herobrine:
  2065.  
  2066. # Enable/Disable integration with Herobrine.
  2067. # https://www.theprogrammersworld.net/Herobrine/
  2068. enable_integration_herobrine: false
  2069.  
  2070. # ########################################################################
  2071. # Holograms
  2072. # ########################################################################
  2073. holograms:
  2074.  
  2075. # Enable/Disable integration with Holograms.
  2076. # https://www.spigotmc.org/resources/holograms.4924/
  2077. enable_integration_holograms: false
  2078.  
  2079. # ########################################################################
  2080. # Holograpic Displays
  2081. # ########################################################################
  2082. holographic_displays:
  2083.  
  2084. # Enable/Disable integration with Holograms.
  2085. # https://dev.bukkit.org/projects/holographic_displays
  2086. enable_integration_holographic_displays: false
  2087.  
  2088. # ########################################################################
  2089. # Precious Stones
  2090. # ########################################################################
  2091. precious_stones:
  2092.  
  2093. # Enable/Disable integration with PreciousStones.
  2094. # https://www.spigotmc.org/resources/preciousstones.5270/
  2095. enable_integration_preciousstones: false
  2096.  
  2097. # ########################################################################
  2098. # DropMoneyOnGround Settings
  2099. # ########################################################################
  2100. dropmoneyonground:
  2101.  
  2102. # When a player get a money reward for a kill, the money will go directly
  2103. # into his pocket. If you set dropMoneyOnGround=true the reward will
  2104. # dropped on ground to be picked up by the player.
  2105. # Negative rewards will always be taken from the player.
  2106. drop_money_on_ground: true
  2107.  
  2108. # Here you can set the type of the ITEM to be dropped.
  2109. # You can choose between "ITEM","KILLED","SKULL","KILLER". The default is ITEM.
  2110. # The value will be showed above the item.
  2111. # ITEM: The reward is dropped as a normal Minecraft item.
  2112. # KILLED: The reward is dropped as the head of the mob/player you killed.
  2113. # SKULL: The reward is dropped as a SKULL with a custom texture. You can generate custom texture value
  2114. # and custom texture signature at http://mineskin.org
  2115. # KILLER: The reward is dropped as the killers head.
  2116. #
  2117. # OBS: If the Gringotts plugin is installed and support not disabled, the droped item will be the Gringotts chosen item.
  2118. # Examples:
  2119. #
  2120. # Bag of gold: (https://mineskin.org/6875)
  2121. #
  2122. # drop_money_on_ground_skull_reward_name: 'Bag of gold'
  2123. # drop_money_on_ground_skull_texture_value: 'eyJ0aW1lc3RhbXAiOjE0ODU5MTIwNjk3OTgsInByb2ZpbGVJZCI6IjdkYTJhYjNhOTNjYTQ4ZWU4MzA0OGFmYzNiODBlNjhlIiwicHJvZmlsZU5hbWUiOiJHb2xkYXBmZWwiLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzM5NmNlMTNmZjYxNTVmZGYzMjM1ZDhkMjIxNzRjNWRlNGJmNTUxMmYxYWRlZGExYWZhM2ZjMjgxODBmM2Y3In19fQ=='
  2124. # drop_money_on_ground_skull_texture_signature: 'm8u2ChI43ySVica7pcY0CsCuMCGgAdN7c9f/ZOxDZsPzJY8eiDrwxLIh6oPY1rvE1ja/rmftPSmdnbeHYrzLQ18QBzehFp8ZVegPsd9iNHc4FuD7nr1is2FD8M8AWAZOViiwlUKnfd8avb3SKfvFmhmVhQtE+atJYQrXhJwiqR4S+KTccA6pjIESM3AWlbCOmykg31ey7MQWB4YgtRp8NyFD3HNTLZ8alcEXBuG3t58wYBEME1UaOFah45tHuV1FW+iGBHHFWLu1UsAbg0Uw87Pp+KSTUGrhdwSc/55czILulI8IUnUfxmkaThRjd7g6VpH/w+9jLvm+7tOwfMQZlXp9104t9XMVnTAchzQr6mB3U6drCsGnuZycQzEgretQsUh3hweN7Jzz5knl6qc1n3Sn8t1yOvaIQLWG1f3l6irPdl28bwEd4Z7VDrGqYgXsd2GsOK/gCQ7rChNqbJ2p+jCja3F3ZohfmTYOU8W7DJ8Ne+xaofSuPnWODnZN9x+Y+3RE3nzH9tzP+NBMsV3YQXpvUD7Pepg7ScO+k9Fj3/F+KfBje0k6xfl+75s7kR3pNWQI5EVrO6iuky6dMuFPUBfNfq33fZV6Tqr/7o24aKpfA4WwJf91G9mC18z8NCgFR6iK4cPGmkTMvNtxUQ3MoB0LCOkRcbP0i7qxHupt8xE='
  2125. #
  2126. # Bag of gold (alternative): (https://mineskin.org/3384)
  2127. #
  2128. # drop_money_on_ground_skull_reward_name: 'Bag of gold'
  2129. # drop_money_on_ground_skull_texture_value: 'eyJ0aW1lc3RhbXAiOjE0NzQzMzI0MzY1MDYsInByb2ZpbGVJZCI6IjNlMjZiMDk3MWFjZDRjNmQ5MzVjNmFkYjE1YjYyMDNhIiwicHJvZmlsZU5hbWUiOiJOYWhlbGUiLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzg2NzczZDc0Y2Y1MDhmZDc3Yzc4MmZmZDI5ZGYyZmU0N2ZiNzE0YjViMGQ3ZGU2N2Q1Mjg2OTMxZTJmMWRmMiJ9fX0='
  2130. # drop_money_on_ground_skull_texture_signature: 'JdvJksowuxYQ0eqf56J+Dmczg7zvlw2DbIc58Q33kRt65uMUNn2iRCQsbNpztC1cAAgyYMOyFDiOUZQeIK03CSRoPLDtWp2u501YoGKqhjgrE0V0UDh3JetWKz4Ob0KmATtY+4R2vSoMjHFEFppM0Oq+8ZER12FAiVEMAzeseFN3Z9fWAMc/V10LoquGBpq6ExTfSCEEMDEGZopF1T8ZBKL0vf4DVendfz4v3yl7bRBzISZEAnF+ECTa9z36r8HRqS8+s0eO/AWYQcRaKIu9H+wSK5F/1v+rgifeSlMAnt1Na8m1b5tMfNuq6pXxWCq4nUGgYVTOLUinqs9ZcFz3Z6Mtx5YtymKk2M0mzxmTm9+AeOL4s3K/UrJYQlcmLBJSv4hd6EigJXoashzWNCHKmFDYCdEhh4FArq4G9vRZtoudcTeMsvi0VmXIgER8U5iSfoTtzXcGbf/GT0ECtgfeA40f5oCqyE4nXreudMmvlDCBr/KHbILQWeeH/jhtYqQ6OwJb3Ji2Bs9F5fQmICSqk7X4yKzexf8rdDhOG1z+/TCot7K8unPVuQx46sXPeP7t2hCiHOXMAnOMt8vuL3gQUURIEM6fMryjmlKsgvk8Jo0gawavRCIZQtA6vT0JRRnSAchzEOA7QP1iiVV3LnwX9Yqw7oMJ/+REV1hWesuzDOc='
  2131. #
  2132. # Chest: (https://mineskin.org/3136)
  2133. #
  2134. # drop_money_on_ground_skull_reward_name: 'Treasure chest'
  2135. # drop_money_on_ground_skull_texture_value: 'eyJ0aW1lc3RhbXAiOjE0NzI4Mzk3Nzk2ODMsInByb2ZpbGVJZCI6ImIwZDRiMjhiYzFkNzQ4ODlhZjBlODY2MWNlZTk2YWFiIiwicHJvZmlsZU5hbWUiOiJJbnZlbnRpdmVHYW1lcyIsInNpZ25hdHVyZVJlcXVpcmVkIjp0cnVlLCJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNTY5NDcxMjQ1YmNhN2M0ZmUwNjQ0MGQ5YjRiOWY3NDIxN2VkNzM0M2FhZDU5YTc5MThiMWExZDYxZDhiYTZkYSJ9fX0='
  2136. # drop_money_on_ground_skull_texture_signature: 'lVA2QIbvybpzhcXof5yWz/7nkHdhG/3MGO+1DyD1txdRCALV6BRwsDUBwIUg06MkLUpBkjmiOvFcCRgal/jDE/xkkJPyk2tb/w4NtQ5PiPiAe0oInVnuiSIVFIE4tnsCdvX0joll3uKwVu6XY3t1KEsqJATcPhA5hslVn1iOp/IfMziIfuCzzob04rScpwcw0mLNtbtbMVAl6LYR9gXVuOkAfXujuYq4lbI/iW0yuLxSAzr8i9QWBP2ftup4qQHwocQRTdUE6/G5G9LwJWXhhnqKWjgjfvL0y2FRFJkgN1cvuq7DvUDBVsePnRIHwU5YvBPMjcZe/KE8VPTSodsN84/+++5p95Puxe1DXMX822xR71IQsxM7eax7Ffrr/Tzxw2rSDh9ivGGlRAB85OHwp/ouUgWNSrT8inNMYImque9EuZku9p3OFet8iZsFhkMXANeNtTVL7LKV7/L/0YWwoeyBnw5QQqvGyWKw3dac5eDkRNCyCtdDIntM5vsd8FxnIFj36zxLWgmrJmOM9hg5PBM4gcDxxryBcug8jSe+W9XDU39OOJotXajj8dgSL8yUn+d7l4Qvat/vJbAE8lonMl7P0P9QBPzmcIUvlRMuHSpRZQYkoCbwc2Filahd/5INtm7I4Y28XYzzupdwLk3cavKfOloL5YrWNqaZr/+9Tbk='
  2137. #
  2138. # Birthday present: (https://mineskin.org/4743)
  2139. #
  2140. # drop_money_on_ground_skull_reward_name: 'Birthday present'
  2141. # drop_money_on_ground_skull_texture_value: 'eyJ0aW1lc3RhbXAiOjE0Nzk5MzEzNDMxMjgsInByb2ZpbGVJZCI6IjNlMjZiMDk3MWFjZDRjNmQ5MzVjNmFkYjE1YjYyMDNhIiwicHJvZmlsZU5hbWUiOiJOYWhlbGUiLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2NmNDRkZjIzMjBiNzYzMTI0N2FhZGY1OWMwZWNlOTdhNGJiNTdkZjI4YzFjZWU3OTM0ZjZhZTI4YWY4OTg5In19fQ=='
  2142. # drop_money_on_ground_skull_texture_signature: 'k1xQ6E1NuxG1ZN7nlQqRJltYrJn44XHVhNA9pSEu2Pt2mkuixMxhIDj2Tg6o+JWlTyGfXtPVWLxygeGymmeSGaVcmDTaCALg7PL11ZfSzSWSxaIufNbj1EcSi264jg5FrAa/2/DnFsgu16wjlWiIGtjCzgx2QabY8YofoPKw6Y6Y5FHZJVXpT8Rsxs8ok6ZHtfm/ZyyTgvRSzh2mKmVyQIYJ1ZKxuqWhDQfbtBpu3dlEzMAEJo85Dvb7uIFYa7WFitjFJue/c9qpqAnazWFLrx33nYpjjeYhcfAvsaNQW3JVFEkyxzEgzOHbdsbiZcqTCwO+49whu175xOqT7XhouEubDT7A3H1jiSvQvkUZJv/GzUF4qFYHSfxhr6OWoBrRGwWmPdcrYx7fUWKo43CAqa5inaiTV4gU70BWrx5i3LhIJxpnspAyTXs8tZBxeoh8IizWD7uXkYYqh3j9cwuHoxfwZuMpOx9CPTC6R/YwJ1YK5OgJBY1+QhNw+NOilWT3jTok82elFvOLm3a5yLyVs+/UPmLD7rZsFm7/DD3VnRcpgjKRiyy2j9vYsYLyNE2BVLVJxBVk2yyy9u7L4VR6PO+8v2dh9DQl7vM2ORCxKPl2lt6woHWM2+eT1PXr16LtMtAOGYT8mlKFhp8Ou2+9fu4AqWkX7n3swU6XLiK5cJs='
  2143. #
  2144. # Choose between "ITEM","KILLED","SKULL","KILLER"
  2145. drop_money_on_ground_itemtype: SKULL
  2146.  
  2147. # Use the reward as a currency (bag of gold) which can be sold, bought, stored in a
  2148. # protected chest or a protected area (a Bank?). Check the command /mh money sell.
  2149. # If false the bag of gold will be picked up as money, if true the bag of gold
  2150. # will be picked up as an item. OBS: If you want to use the bags as an Economy
  2151. # replacing Essentials/CraftConomy/... and more, then you have to install the
  2152. # BagOfGold plugin as well. (https://dev.bukkit.org/projects/bagofgold)
  2153. drop_money_use_item_as_currency: true
  2154.  
  2155. # Here you can chance the command /mh money ... to /mh <alias> ...
  2156. # Example: gold,bag,silver,coin,????
  2157. drop_money_command_alias: gold
  2158.  
  2159. # Here you can set which item should be used when you have
  2160. # chosen drop_money_on_ground_itemtype: ITEM.
  2161. # Use Minecraft Item names like:
  2162. # GOLD_NUGGET, DIAMOND, GOLD_INGOT, EMERALD, GOLDEN_APPLE
  2163. drop_money_on_ground_item: GOLD_INGOT
  2164.  
  2165. # Here you can set of the color of the number above the dropped item.
  2166. # Use color names like WHITE, RED, BLUE, GOLD
  2167. drop_money_on_ground_text_color: WHITE
  2168.  
  2169. # This is the name of the reward
  2170. drop_money_on_ground_skull_reward_name: Золото
  2171.  
  2172. # This is the name of the reward in plural
  2173. drop_money_on_ground_skull_reward_name_plural: Золото
  2174.  
  2175. # This is the Custom Texture Value generated at http://mineskin.org
  2176. drop_money_on_ground_skull_texture_value: eyJ0aW1lc3RhbXAiOjE0ODU5MTIwNjk3OTgsInByb2ZpbGVJZCI6IjdkYTJhYjNhOTNjYTQ4ZWU4MzA0OGFmYzNiODBlNjhlIiwicHJvZmlsZU5hbWUiOiJHb2xkYXBmZWwiLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzM5NmNlMTNmZjYxNTVmZGYzMjM1ZDhkMjIxNzRjNWRlNGJmNTUxMmYxYWRlZGExYWZhM2ZjMjgxODBmM2Y3In19fQ==
  2177.  
  2178. # This is the Custom Texture Signature generated at http://mineskin.org
  2179. drop_money_on_ground_skull_texture_signature: m8u2ChI43ySVica7pcY0CsCuMCGgAdN7c9f/ZOxDZsPzJY8eiDrwxLIh6oPY1rvE1ja/rmftPSmdnbeHYrzLQ18QBzehFp8ZVegPsd9iNHc4FuD7nr1is2FD8M8AWAZOViiwlUKnfd8avb3SKfvFmhmVhQtE+atJYQrXhJwiqR4S+KTccA6pjIESM3AWlbCOmykg31ey7MQWB4YgtRp8NyFD3HNTLZ8alcEXBuG3t58wYBEME1UaOFah45tHuV1FW+iGBHHFWLu1UsAbg0Uw87Pp+KSTUGrhdwSc/55czILulI8IUnUfxmkaThRjd7g6VpH/w+9jLvm+7tOwfMQZlXp9104t9XMVnTAchzQr6mB3U6drCsGnuZycQzEgretQsUh3hweN7Jzz5knl6qc1n3Sn8t1yOvaIQLWG1f3l6irPdl28bwEd4Z7VDrGqYgXsd2GsOK/gCQ7rChNqbJ2p+jCja3F3ZohfmTYOU8W7DJ8Ne+xaofSuPnWODnZN9x+Y+3RE3nzH9tzP+NBMsV3YQXpvUD7Pepg7ScO+k9Fj3/F+KfBje0k6xfl+75s7kR3pNWQI5EVrO6iuky6dMuFPUBfNfq33fZV6Tqr/7o24aKpfA4WwJf91G9mC18z8NCgFR6iK4cPGmkTMvNtxUQ3MoB0LCOkRcbP0i7qxHupt8xE=
  2180.  
  2181. # Dark room mobspawners usually collect items in a HOPPER. This is allowed by default.
  2182. # If you want to deny HOPPERS to collect MobHunting Money rewards
  2183. # set "deny_hoppers_to_pickup_money_on_ground"=false
  2184. deny_hoppers_to_pickup_money_on_ground: false
  2185.  
  2186. # ########################################################################
  2187. # Database Settings.
  2188. # ########################################################################
  2189. database:
  2190.  
  2191. # Type of database to use. Valid values are: sqlite, mysql
  2192. type: sqlite
  2193. database_name: mobhunting
  2194. mysql:
  2195. username: user
  2196. password: password
  2197. host: localhost:3306
  2198.  
  2199. # This is the database layout version. Mostly for internal use and you should not need
  2200. # to chance this value. In case you decide to delete your database and let it recreate
  2201. # or if you chance database type sqlite/mysql you should set this value to 0 again.
  2202. database_version: 7
  2203.  
  2204. # ########################################################################
  2205. # Update settings
  2206. # ########################################################################
  2207. updates:
  2208.  
  2209. # Check if there is a new version of the plugin available.
  2210. update_check: false
  2211.  
  2212. # Set the number of seconds between each check. Recommended setting is
  2213. # check_every: 7200 ~ to check every second hour.
  2214. check_every: 86400
  2215.  
  2216. # Set 'autoupdate: true' if you want new updates downloaded and installed.
  2217. # You will still have to reboot the server manually.
  2218. autoupdate: false
  2219.  
  2220. # ########################################################################
  2221. # General Settings
  2222. # ########################################################################
  2223. general:
  2224.  
  2225. # Put the names of the worlds here that you do not wish for mobhunting to be enabled in.
  2226. disabled_in_worlds:
  2227. - worldname
  2228.  
  2229. # The language (file) to use. You can put the name of the language file as the language code
  2230. # (eg. en_US, de_DE, fr_FR, ect.) or you can specify the name of a custom file without the .lang
  2231. # Please check the lang/ folder for a list of all available translations.
  2232. language: en_US
  2233.  
  2234. # Can the players earn money on mobs spawned from mobspawners, eggs and from eggs from Dispensers?
  2235. # If you disable this you are still able to get rewards from specific Spawners, if you white list the area
  2236. # using '/mh whitelistarea'.
  2237. disable_money_rewards_from_mobspawners_and_eggs: false
  2238.  
  2239. # Let the players get the naturally dropped items from mobs spawned from mobspawners, eggs and from eggs from Dispensers ?
  2240. disable_naturally_dropped_items_from_mobspawners_and_eggs: false
  2241.  
  2242. # Let the players get the naturally dropped XP from mobs spawned from mobspawners, eggs and from eggs from Dispensers ?
  2243. disable_naturally_dropped_xp_from_mobspawners_and_eggs: false
  2244.  
  2245. # As of V 5.0.0 MobHunting utilizises the Advancement system (L key) to to show which
  2246. # Achievements the players has made. This is still BETA feature and it is only Supported
  2247. # on Spigot Servers and if you have any problems, you can set 'disable_mobhunting_advancements: true
  2248. # and the reload the plugin.
  2249. disable_mobhunting_advancements: true
  2250.  
  2251. # Broadcast messages will be send in the ActionBar if MobHunting finds a supported ActionBar plugin.
  2252. use_actionbar_for_broadcasts: false
  2253.  
  2254. # Should achievements be broadcasted?
  2255. broadcast_achievement: false
  2256.  
  2257. # Should the hunt begins achievement be broadcasted?
  2258. broadcast_first_achievement: false
  2259.  
  2260. # Time between saves in ticks (20 ticks ~ 1 sec) This number must be higher that 1200 ticks = 2 minutes,
  2261. # but I recommend to save every 5th minute = 6000 ticks
  2262. save_period: 6000
  2263.  
  2264. # Time between leaderboard updates in ticks (20 ticks ~ 1 sec) This number must be higher that 1200 ticks = 2 minutes,
  2265. # but I recommend to update leaderboards max every 5 min = 6000 ticks
  2266. leaderboard_update_period: 6000
  2267.  
  2268. # Time in seconds after attacking a mob that can be counted as a kill
  2269. kill_timeout: 10
  2270.  
  2271. # If kills are not being registered in mob hunting. Enable this to see why they arent
  2272. debug: false
  2273.  
  2274. # Backup config on each server start / reload
  2275. backup: true
  2276.  
  2277. # Rounding of rewards when you uses a range or %. (ex creeperPrize=10:30) the reward.
  2278. # All numbers except 0 can be used.
  2279. # Set rounding_reward=1 if you want integers. IE. 10,11,12,13,14...
  2280. # Set rounding_reward=0.01 if you want 2 decimals 10.00, 10.01, 10.02... integers.
  2281. # Set rounding_reward=5 if you want multipla of 5 IE. 10,15,20,25...
  2282. # Set rounding_reward=2 if you want multipla of 2 IE. 10,12,14,16...
  2283. reward_rounding: 0.01
  2284.  
  2285. # This is the minimum reward which will which will be paid to the player 0.01 will be fine
  2286. # in most installation, but Gringott users who want very low rewards (like 0.001 for killing
  2287. # a mob) will have to lower the minimum reward. Remember that some multipliers are less than 1
  2288. # and grinding detection and penalties. The minimum_reward should therefor be less than 10%
  2289. # of smallest reward. In the Gringotts example minimum_reward should be 0.0001 or 0.00005.
  2290. minimum_reward: 0.01
  2291.  
  2292. # When a new playerjoins the server he will by default start
  2293. # in 'LEARNING MODE' and get extra information about when he get rewards and not,
  2294. # when killing Mobs. The player can disable this InGame by using the command '/mobhunt learn'
  2295. newplayer_learning_mode: false
  2296.  
  2297. # When use_gui_for_achivements=true the status of players achievements will
  2298. # be showed in a Inventory GUI.
  2299. use_gui_for_achievements: true
  2300.  
  2301. # When use_gui_for_bounties=true the open bounties and most wanted players will
  2302. # be showed in a Inventory GUI.
  2303. use_gui_for_bounties: true
  2304.  
  2305. # Disable natural drops when a mob is killed
  2306. # (because player is grinding or protected by Worldguard or in God mode or similar)
  2307. # If you want the mobs to drops normal rewards set
  2308. # "disable_natural_item_drops"=false
  2309. disable_natural_item_drops: false
  2310.  
  2311. # Disable natural xp drops when a mob is killed
  2312. # (because player is grinding or protected by Worldguard or in God mode or similar)
  2313. # If you want the mobs to drop normal XP set
  2314. # "disable_natural_xp_drops"=false
  2315. disable_natural_xp_drops: false
  2316.  
  2317. # Try to cancel natural drops when a mob is killed the player is in creative mode.
  2318. # If you want the mobs to drops normal rewards set
  2319. # "try_to_cancel_natural_drops_when_in_creative"=false
  2320. try_to_cancel_natural_drops_when_in_creative: false
  2321.  
  2322. # Try to cancel XP drops when a mob is killed while the player is in creative mode.
  2323. # If you want the mobs to drop normal XP set
  2324. # "try_to_cancel_xp_drops_when_in_creative"=false
  2325. try_to_cancel_xp_drops_when_in_creative: false
  2326.  
  2327. # Do not chance this value unless you know what you are doing. It's meant for internal use.
  2328. config_version: 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement