• 🏆 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!
  • 🏆 Hive's 6th HD Modeling Contest: Mechanical is now open! Design and model a mechanical creature, mechanized animal, a futuristic robotic being, or anything else your imagination can tinker with! 📅 Submissions close on June 30, 2024. Don't miss this opportunity to let your creativity shine! Enter now and show us your mechanical masterpiece! 🔗 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