Advertisement
Guest User

"Defect config.yml"

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