Advertisement
Guest User

Mobhunting config

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