• 🏆 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!

0 Mirror images

Status
Not open for further replies.
Level 2
Joined
Sep 7, 2005
Messages
15
I was wondering how I can make 0 mirror images. Now I bet you're wondering "why do I want 0 images?" It's because

1: It removes all buffs
2: Quick escape from battle without clicking somewhere else
3: I want the place he warped to to take damage.
 
Level 6
Joined
Dec 29, 2004
Messages
163
THis uses a few triggers.

First, make your Ninja Escape make only 1 ilision.
Second, make the area of effect bigger. This changes how far the unit will poof to.
Third, do all the other stuff, such as mana, tooltips, graphics, all that good stuff.

Finaly, go into the triggers and make this kind of trigger.

Events
- Unit - A unit Begins casting an ability

Conditions
- (Ability being cast) Equal to Ninja Escape

Actions
- If (All Conditions are True) then do (Then Actions) else do (Else Actions)

--- If - Conditions
------- ((Last created unit) is an illusion) Equal to True

---Then - Actions
-------Unit - Remove (Last created unit) from the game

---Else - Actions


I just tested it, and it's a fun skill.
I may use this in me mod.
 
Level 10
Joined
Jul 2, 2004
Messages
690
Ekoi said:
THis uses a few triggers.

First, make your Ninja Escape make only 1 ilision.
Second, make the area of effect bigger. This changes how far the unit will poof to.
Third, do all the other stuff, such as mana, tooltips, graphics, all that good stuff.

Finaly, go into the triggers and make this kind of trigger.

Events
- Unit - A unit Begins casting an ability

Conditions
- (Ability being cast) Equal to Ninja Escape

Actions
- If (All Conditions are True) then do (Then Actions) else do (Else Actions)

--- If - Conditions
------- ((Last created unit) is an illusion) Equal to True

---Then - Actions
-------Unit - Remove (Last created unit) from the game

---Else - Actions


I just tested it, and it's a fun skill.
I may use this in me mod.

NEVER EVER use "begin casting an ability". because you can click the skill and quickly use the command. the effect would still happen and no mana cost or cooldown will take effect. Use "starts the effect of an ability".
 
Status
Not open for further replies.
Top