Hey guys I'm fiddling with making custom quests and I was wondering if it would be possible to make a quest that requires you to kill 100 Feral Zombies for example?
I know that
<property name="EntityType" value="Zombie"/> <!-- This one decides for scoring -->
this value decides for scoring but this one extends to all existing zombies.
Is there a simple way of counting only Ferals somehow? Perhaps through tags? If so how would it be done?
The usual basic quests have:
<objective type="ZombieKill" value="5" phase="1"/>
and that's that. You kill a couple of zombies and the quest is done.
There is also for specific zombos:
<objective type="ZombieKill" id="zombieLab" value="1" phase="1"/>
where you would need to kill one Lab coat zombie and that would be that.
But I can't seem to find a way of just singling out all ferals. Any help would be appreciated.
I know that
<property name="EntityType" value="Zombie"/> <!-- This one decides for scoring -->
this value decides for scoring but this one extends to all existing zombies.
Is there a simple way of counting only Ferals somehow? Perhaps through tags? If so how would it be done?
The usual basic quests have:
<objective type="ZombieKill" value="5" phase="1"/>
and that's that. You kill a couple of zombies and the quest is done.
There is also for specific zombos:
<objective type="ZombieKill" id="zombieLab" value="1" phase="1"/>
where you would need to kill one Lab coat zombie and that would be that.
But I can't seem to find a way of just singling out all ferals. Any help would be appreciated.