Hello -
So I'm not a techy here. But I tried to edit the list for only a select few zombies to appear in game but not sure if I did the editing right. I tried to completely eliminate them from any HORDE night, and tried to completely eliminate the zombies that are just whack. So what I was left with was this:
<append xpath="/entitygroups/entitygroup[@name='ZombiesForestDowntownNight']">
<entity name="zombieBanshee" prob="0.2"/>
<entity name="ZombieBomber" prob="0.2"/>
<entity name="zombieCowhead" prob="0.2"/>
<entity name="zombieMantis" prob="0.2"/>
<entity name="zombieParasite" prob="0.2"/>
<entity name="zombiePsycho" prob="0.2"/>
<entity name="zombieScarecrow" prob="0.2"/>
<entity name="zombieScorcher" prob="0.2"/>
<entity name="zombieSiren" prob="0.2"/>
<entity name="ZombieUndertaker" prob="0.2"/>
<entity name="zombieWendigo" prob="0.075"/>
<entity name="zombieWrestler" prob="0.075"/>
prob="0.075"/>
<entitygroup name="ZombiesDesertNight">
<entity name="zombieBiker" prob="0.5"/>
<entity name="zombiePartyGirl" prob="0.5"/>
<entity name="zombieUtilityWorker" prob="0.5"/>
<entity name="zombieNurse" prob="0.5"/>
<entity name="zombieSteveCrawler" prob="0.5"/>
<entity name="zombieFatHawaiian" prob="0.5"/>
<entity name="ZombieBomber" prob="0.2"/>
<entity name="zombieCowhead" prob="0.2"/>
<entity name="zombieMantis" prob="0.2"/>
<entity name="zombieParasite" prob="0.2"/>
<entity name="zombiePsycho" prob="0.2"/>
<entity name="zombieScarecrow" prob="0.2"/>
<entity name="zombieSiren" prob="0.2"/>
<entity name="ZombieUndertaker" prob="0.5"/>
<entity name="zombieWendigo" prob="0.075"/>
<entity name="zombieWrestler" prob="0.3"/>
prob="0.075"/>
</entitygroup>
</append>
</configs>
If I leave it like that - will that work or did I screw up the coding...? Editing this with Notepad.
Thanks!
In your words, you screwed up the coding.
prob="0.075"/> is not required as it is not hooked up to an entity type.
</entitygroup> is required for the first list instance at the bottom.
<entitygroup name="ZombiesDesertNight"> requires appending as it does not exist in the 7D2D and is a totally new group for those night time spawns.
This instance includes your list for the Desert at night only.
I'm not sure if you've removed the Hard Wasteland Night. If it remains then it also needs to be in there above or below the Desert at night group.
<append xpath="/entitygroups">
<entitygroup name="ZombiesDesertNight">
<entity name="zombieBiker" prob="0.5"/>
<entity name="zombiePartyGirl" prob="0.5"/>
<entity name="zombieUtilityWorker" prob="0.5"/>
<entity name="zombieNurse" prob="0.5"/>
<entity name="zombieSteveCrawler" prob="0.5"/>
<entity name="zombieFatHawaiian" prob="0.5"/>
<entity name="ZombieBomber" prob="0.2"/>
<entity name="zombieCowhead" prob="0.2"/>
<entity name="zombieMantis" prob="0.2"/>
<entity name="zombieParasite" prob="0.2"/>
<entity name="zombiePsycho" prob="0.2"/>
<entity name="zombieScarecrow" prob="0.2"/>
<entity name="zombieSiren" prob="0.2"/>
<entity name="ZombieUndertaker" prob="0.5"/>
<entity name="zombieWendigo" prob="0.075"/>
<entity name="zombieWrestler" prob="0.3"/>
</entitygroup>
</append>
And this list reflects the choices made for the Downtown area at night, should Downtown appear in the Pine Forest.
<append xpath="/entitygroups/entitygroup[@name='ZombiesForestDowntownNight']">
<entity name="zombieBanshee" prob="0.2"/>
<entity name="ZombieBomber" prob="0.2"/>
<entity name="zombieCowhead" prob="0.2"/>
<entity name="zombieMantis" prob="0.2"/>
<entity name="zombieParasite" prob="0.2"/>
<entity name="zombiePsycho" prob="0.2"/>
<entity name="zombieScarecrow" prob="0.2"/>
<entity name="zombieScorcher" prob="0.2"/>
<entity name="zombieSiren" prob="0.2"/>
<entity name="ZombieUndertaker" prob="0.2"/>
<entity name="zombieWendigo" prob="0.075"/>
<entity name="zombieWrestler" prob="0.075"/>
</append>