• If you have a mod, tool or prefab, please use the Resources section. Click Mods at the top of the forums.

Help with requirementGroup

RippedWarrior

New member
Hi there, I am trying to create a quest to kill 20 chickens with a bow. I've been trying to configure this using requirementGroup to no avail.

I've tried dozens of different combinations of the code. The code below does enforce the Chicken kill but it advances with any weapon - it's not recognizing the requirementGroup.

I get no console errors. 

If anyone has experience with requirementGroup, would you willing to take a look at my code?

Thanks in advance!

<objective type="EntityKill">
                <property name="objective_name_key" value="Kill_Chicken_With_Bow" />
                <property name="needed_count" value="20" />         
                <property name="target_tags" value="chicken"/>
                <property name="phase" value="1"/>    
            </objective>
    
      <requirementGroup id="ChickenBowGroup" value="OR" phase="1">
        <requirement type="Quests.Requirements.Holding" id="gunBowT0PrimitiveBow" check="true" />
        <requirement type="Quests.Requirements.Holding" id="gunBowT1WoodenBow" check="true" />
        <requirement type="Quests.Requirements.Holding" id="gunBowT3CompoundBow" check="true" />
    </requirementGroup>

 
Back
Top