Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.12 KB | None | 0 0
  1. <world>
  2.   <allow-mc-spawning>no</allow-mc-spawning> <!--Disable MC spawning for custom only-->
  3.   <timers>
  4.       <spawner>
  5.         <interval>20</interval> <!--try each 20 ticks to spawn mobs-->
  6.         <unique-hub-chunks>yes</unique-hub-chunks> <!-- only one attempt per chunk each time -->
  7.         <hubs>
  8.           <first_hub>
  9.             <hub-attempts>4</hub-attempts> <!-- try 9 times to find a suitable block for the center of the hub -->
  10.             <hub-range>5..20</hub-range> <!-- Look from 5 to 20 blocks around the center of the hub -->
  11.             <hub-y-range>0..5</hub-y-range> <!-- Look from 0 to 5 blocks up and down from the center of the hub -->
  12.             <unique-pack-blocks>yes</unique-pack-blocks> <!-- only one pack per hub center -->
  13.             <block-is-solid>yes</block-is-solid> <!-- the choosen block need to be solid -->
  14.             <block-light>0..</block-light> <!-- mobs can spawn if the light is >0 (always active) -->
  15.             <blocks-from-player>30..</blocks-from-player> <!-- the center of the hub must me 30 blocks away from a player -->
  16.             <world-has-spawned>500..</world-has-spawned> <!-- the world can't have more than 500 monsters -->
  17.             <start-if>
  18.               <world-time>0..</world-time> <!-- the hour of the day must be >0 (always active) -->
  19.             </start-if>
  20.             <packs>
  21.               <first_pack>
  22.                 <pack-attempts>1</pack-attempts> <!-- try 9 times to find a suitable block inside the hub -->
  23.                 <pack-range>1..20</pack-range> <!-- mobs can spawn from 1 to 20 blocks around the center of the hub -->
  24.                 <pack-y-range>0..5</pack-y-range> <!-- mobs can spawn from 0 to 5 blocks up and down from the center of the hub -->
  25.                 <block-is-solid>yes</block-is-solid> <!-- the choosen block need to be solid -->
  26.                 <mobs>
  27.                   <fakemob/> <!-- spawn a "fake mob" which will be deleted by mythic mobs to spawn custom mobs -->
  28.                 </mobs>
  29.               </first_pack>
  30.             </packs>
  31.           </first_hub>
  32.         </hubs>
  33.       </spawner>
  34.   </timers>
  35. </world>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement