• 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.

Item Fusing Help

Status
Not open for further replies.
Level 6
Joined
Oct 22, 2006
Messages
184
I know this may be a noobish request but I want to make it so when u go in the circle of power with certain items. They fuse together to create a better item. And if you have no clue what im talking about, Like Hell vs Heaven item fusing
 
Level 19
Joined
Nov 16, 2006
Messages
2,165
Code:
    Events
        Unit - A unit enters <Your region> 
    Conditions
        ((Entering unit) has an item of type Agility Boots) Equal to True
        ((Entering unit) has an item of type Mantle of Intelligence) Equal to True
        ((Entering unit) has an item of type Bracer of Strength) Equal to True
    Actions
        Hero - Drop (Item carried by (Entering unit) of type Agility Boots) from (Entering unit)
        Item - Remove (Last dropped item)
        Hero - Drop (Item carried by (Entering unit) of type Bracer of Strength) from (Entering unit)
        Item - Remove (Last dropped item)
        Hero - Drop (Item carried by (Entering unit) of type Mantle of Intelligence) from (Entering unit)
        Item - Remove (Last dropped item)
        Item - Create The Exodius at ((Owner of (Entering unit)) start location)
        Hero - Give (Last created item) to (Entering unit)

This would work.
Why create at the start location?
No leak
 
Status
Not open for further replies.
Top