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

Proper way to create and use illusions with triggers.

Status
Not open for further replies.
For some future spells, i'll need to use illusions.

Never used them in totally custom spells, so need some informations on what's the best way to create and use illusions in triggers.

(example : the spell creates an illusion of the hero, and this illusion would turn around the hero)

To create them, i know we can use Object Illusion and a Dummy, but to use the illusion in triggers after that, i dunno.

If possible, give GUI solutions.
 
Level 6
Joined
May 13, 2009
Messages
260
So when the hero uses the ability a mirror image is created and the casting hero turns around 180 degrees?

You can create the unit via triggers and then set a unit variable to last created unit. You can set unit facing with Unit - Make Unit Face Angle :)
 
Level 6
Joined
May 13, 2009
Messages
260
The difference between a unit and an illusion is that illusion does less damage are slightly tinted for the casting player, have an expiration timer as the water elementals, does no damage and they take more damage.

Create a custom unit based from water elemental and change all the settings and just normally create it :)
 
The difference between a unit and an illusion is that illusion does less damage are slightly tinted for the casting player, have an expiration timer as the water elementals, does no damage and they take more damage.

Create a custom unit based from water elemental and change all the settings and just normally create it :)
And your differences aren't all true. An illusion can deal the same damages than the normal unit, and take the same damages.
A custom unit based of water elemental won't have an expiration timer. In that case you should add one with triggers.

I want solutions to do it, not solutions to by-pass it.
 
Level 33
Joined
Mar 27, 2008
Messages
8,035
call IssueTargetOrderById(YourDummy, 852274, YourTarget)
The '852274' is the Order ID for casting Wand of Illusion-based ability.
So, add the Wand of Illusion ability to your dummy and just use that function.

Usually, in GUI, you would have to create a dummy, give the dummy the item that has the ability of wand of illusion and order it to cast, seems unefficient compared to functions above, a direct order.
 
Status
Not open for further replies.
Top