Russiandood Posted July 24, 2023 Share Posted July 24, 2023 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 More sharing options...
arramus Posted July 25, 2023 Share Posted July 25, 2023 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 More sharing options...
bdubyah Posted July 25, 2023 Share Posted July 25, 2023 They changed them up a bit, and use namespaces now, so that req would look like: <requirement type="Quests.Requirements.Holding" id="meleeToolRepairT3Nailgun"/> 3 Link to comment Share on other sites More sharing options...
arramus Posted July 25, 2023 Share Posted July 25, 2023 Good to know, thanks. I also wanted to implement this feature for A21 but would have never known as I can't dig to that level of detail. Link to comment Share on other sites More sharing options...
BFT2020 Posted July 25, 2023 Share Posted July 25, 2023 Figured they were still there, but the format changed Link to comment Share on other sites More sharing options...
Russiandood Posted July 25, 2023 Author Share Posted July 25, 2023 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 More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now