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