• 💀 Happy Halloween! 💀 It's time to vote for the best terrain! Check out the entries to Hive's HD Terrain Contest #2 - Vampire Folklore.❗️Poll closes on November 14, 2023. 🔗Click here to cast your vote!
  • 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • 🏆 HD Level Design Contest #1 is OPEN! Contestants must create a maze with at least one entry point, and at least one exit point. The map should be made in HD mode, and should not be openable in SD. Only custom models from Hive's HD model and texture sections are allowed. The only exceptions are DNC models and omnilights. This is mainly a visual and design oriented contest, not technical. The UI and video walkthrough rules are there to give everyone an equal shot at victory by standardizing how viewers see the terrain. 🔗Click here to enter!

Multiple Item Condition

Status
Not open for further replies.
Level 3
Joined
Jul 18, 2010
Messages
35
I'm not exactly the best trigger-er, but I'm gettin there with practice.

I was wondering how to make a condition where my hero needs to have all of the required items to activate an action, i.e "Collect bear pelt, wolf pelt, and orange dye" after I collect them all I get a new quest step.

Been trying AND conditions but they aren't working with it..
 
Level 17
Joined
Feb 11, 2011
Messages
1,860
Something like this?

  • Trigger
    • Events
      • Unit - A unit Acquires an item
    • Conditions
      • ((Triggering unit) has an item of type Bear Pelt) Equal to True
      • ((Triggering unit) has an item of type Wolf Pelt) Equal to True
      • ((Triggering unit) has an item of type Orange Dye) Equal to True
    • Actions
      • -------- Your quest step(s) here --------
 
Level 3
Joined
Jul 18, 2010
Messages
35
I'm surprised I didn't find that trigger... I kept using "Item being manipulated"

My trigger I'm using currently is much more complicated, thank you for this much simpler one!
 
Status
Not open for further replies.
Top