• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.
  • 💡 We're thrilled to announce that our upcoming texturing contest is in the works, and we're eager to hear your suggestions! Please take this opportunity to share your ideas in this theme discussion thread for the Texturing Contest #34!
  • 🏆 Hive's 7th HD Modeling Contest: Icecrown Creature is now open! The frozen wastes of Icecrown are home to some of Azeroth’s most terrifying and resilient creatures. For this contest, your challenge is to design and model a HD 3D monster that embodies the cold, undead, and sinister essence of Icecrown! 📅 Submissions close on April 13, 2025. Don't miss this opportunity to let your creativity shine! Enter now and show us your frozen masterpiece! 🔗 Click here to enter!

SET ITEMS!

Status
Not open for further replies.
Level 7
Joined
Feb 4, 2005
Messages
289
I'm making interesting thing to add set bonuses of items but it doesn't work without triggers. Imagine you creep and you find a Veil of Steel (helm- an item i made) ,then you find an armor. Now i need the bonuses of this set of 2 items.

Can you give me the right triggers for the following:
-if ANY hero has in his inventory the Veil and the Armor, he receives a special +150 life bonus (optional- doesn't matter how much life/mana or what ability).

Can someone do it or it is too hard ?
 
Level 8
Joined
Jul 28, 2004
Messages
258
you need to make this kind of trigger:
Code:
Events
   Unit aquires an item
Conditions
   Boolean - Hero (Hero monipulating item) has item of type (Helm) equal to true
   Boolean - Hero (Hero monipulating item) has item of type (Armor) equal to true
Actions
   Unit - add ability (Ability that increases life by 150)
you will need to make another one that looks like this
Code:
Events
   Unit loses an item
Conditions
   Or
   Boolean - Hero (Hero monipulating item) has item of type (Helm) equal to false.
   Boolean - Hero (Hero monipulating item) has item of type (Armor) equal to false.
Actions
   Remove abiltiy (Ability that increases life by 150)
[/quote]
 
Level 7
Joined
Feb 4, 2005
Messages
289
shadow1500 said:
you need to make this kind of trigger:
Code:
Events
   Unit aquires an item
Conditions
   Boolean - Hero (Hero monipulating item) has item of type (Helm) equal to true
   Boolean - Hero (Hero monipulating item) has item of type (Armor) equal to true
Actions
   Unit - add ability (Ability that increases life by 150)
you will need to make another one that looks like this
Code:
Events
   Unit loses an item   Or
Conditions

   Boolean - Hero (Hero monipulating item) has item of type (Helm) equal to false.
   Boolean - Hero (Hero monipulating item) has item of type (Armor) equal to false.
Actions
   Remove abiltiy (Ability that increases life by 150)
[/quote]


Some things arent very clear. So Unit- Add (Ablility) to (triggering unit) , i should change triggering unit to (hero manipulating item) or what ? You missed the (triggering unit) part.

Second: the 'Or' Condition has Condition 1 and Condition 2. What exactly do you mean ?
And do they have to be in different triggers or one trigger with mixed 'True and False Conditions?'
 
Status
Not open for further replies.
Top