Jump to content

What happened to custom Quests?


Recommended Posts

I am trying to make a quest chain that includes killing zombies while holding a specific weapon.

 

Did A21 remove the objective type: ZombieKill and Requirement type: Holding?

 

Is it supposed to be formatted different or the type named differently?

 

Thanks!

 

 

Link to comment
Share on other sites

A21 appears to have removed things like:

 

        <objective type="ZombieKill" id="zombieMaleBatonHazmat" value="50" phase="1"/>
        <requirement type="Holding" id="meleeWpnBatonT2StunBaton" phase="1"/>

 

ZombieKill is now EntityKill.

Holding and some other variants tested did not function in A21 quests. It was rejected when loading.

 

In your case, something like

<requirement name="HoldingItemHasTags" tags="Magbow"/>

grabbed from buffs did not transfer over to quests.

 

There may be something out there, but I have not looked or tested too deeply.

Link to comment
Share on other sites

16 hours ago, arramus said:

A21 appears to have removed things like:

 

        <objective type="ZombieKill" id="zombieMaleBatonHazmat" value="50" phase="1"/>
        <requirement type="Holding" id="meleeWpnBatonT2StunBaton" phase="1"/>

 

ZombieKill is now EntityKill.

Holding and some other variants tested did not function in A21 quests. It was rejected when loading.

 

In your case, something like

<requirement name="HoldingItemHasTags" tags="Magbow"/>

grabbed from buffs did not transfer over to quests.

 

There may be something out there, but I have not looked or tested too deeply.

 

15 hours ago, bdubyah said:

They changed them up a bit, and use namespaces now, so that req would look like:

<requirement type="Quests.Requirements.Holding" id="meleeToolRepairT3Nailgun"/>

 

 

Oh this is great! Thank you all for the help!

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...