Jump to content

Quest using multiple weapons!


ZzzSmileYzzZ

Recommended Posts

I'm trying to make a quest, so that the player must kill multiple zombies, with different weapon each time.

 

For example: They must kill 5 Zombies with the hand gun, then 5 more Zombies with the hunting rifle, then 5 more with the MP5 etc...

 

I don't want to make different quest for each weapons, I'll prefer to use only one quest for it.

 

Is it doable, if so how should I code the quest?

 

Cheers,

Link to comment
Share on other sites

I think this would need to be a quest chain if you want to have 1 gun for 1 zombietype. You can have multiple holding weapons options and multiple target objectives like this:

 

<objective type="AnimalKill" id="animalRabbit" value="10" />

<objective type="AnimalKill" id="animalChicken" value="10" />

<objective type="ZombieKill" id="animalZombieDog" value="20" />

<requirement type="Group" id="requirementGroupArchery" value="OR">

<requirement type="Holding" id="woodenBow" />

<requirement type="Holding" id="crossbow" />

</requirement>

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...