• 🏆 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!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

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