Is it possible to make it so 50% more Zombies spawn?
Printable View
Is it possible to make it so 50% more Zombies spawn?
You could go into studio and add more zombie spawn areas, but if I am correct, there should be a thing inside studio to edit that. but you may need to go to every zombie spawn and add it through studio. I will check that real quick.
In LevelData.xml look for this:
That's what you need :)Code:<!-- Zobmie spawn data -->
<object className="obj_ZombieSpawn" fileName="ZombieSpawn">
<position x="7027.2832" y="41.6814" z="7570.3281" />
<gameObject hash="2556538110" PhysEnable="false" MinQuality="1" BulletPierceable="0">
<rotation x="0.0000" y="0.6692" z="0.0000" />
</gameObject>
<spawn_parameters numZombieSelected="3">
<spawn_radius val="80.2105" />
<max_zombies val="21" />
<sleepers_rate val="10" />
<zombies_spawn_delay val="2" />
<min_detection_radius val="5" />
<max_detection_radius val="10" />
<lootBoxID val="0" />
<fastZombieChance val="50" />
<speedVariation val="5" />
<z0 id="20186" />
<z1 id="20183" />
<z2 id="20191" />
</spawn_parameters>
</object>
So
<spawn_radius val="80.2105" /> (Radius around the area they spawn?)
<max_zombies val="21" /> (Total Zombies out at once?)In each area)
<sleepers_rate val="10" /> (Total Sleepers out at once?)
<zombies_spawn_delay val="2" /> (How long it takes to re-spawn?)
Is that what each line does?