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

[Spell] Making multiple missile on single target spell

Status
Not open for further replies.
Level 6
Joined
Jan 2, 2015
Messages
171
Hi, i would like to make spells named Chain Rocket. Unit will use spell that will fire 3 rockets to same unit. each missile will damage single target. It is based on RF Online striker skills. If anyone got idea on how to make it triggers. it will help me alot ^^

Heres Video Link

 
Level 13
Joined
Jan 2, 2016
Messages
973
it would be something like:
Event: a unit starts the effect of ability
Condition: Ability being cast == your ability
Actions: (optional) play unit animation
(optional) wait 2-3 seconds
create a dummy unit
give the dummy timed life
give the dummy rocket ability ( based on Acid Bomb )
make the dummy cast the ability onto the target
wait 0.33 seconds
make the dummy cast the ability onto the target
wait 0.33 seconds
make the dummy cast the ability onto the target
 
Level 24
Joined
Aug 1, 2013
Messages
4,657
Except that you shouldnt use waits... especially in this case.
Better to make a timer and index all the values you need... and still having the dummy actually firing the missile is pretty bad.
In which case, it is better to use a missile system staight off.
 
Level 6
Joined
Jan 2, 2015
Messages
171
Except that you shouldnt use waits... especially in this case.
Better to make a timer and index all the values you need... and still having the dummy actually firing the missile is pretty bad.
In which case, it is better to use a missile system staight off.

ok ill try missile system

it would be something like:
Event: a unit starts the effect of ability
Condition: Ability being cast == your ability
Actions: (optional) play unit animation
(optional) wait 2-3 seconds
create a dummy unit
give the dummy timed life
give the dummy rocket ability ( based on Acid Bomb )
make the dummy cast the ability onto the target
wait 0.33 seconds
make the dummy cast the ability onto the target
wait 0.33 seconds
make the dummy cast the ability onto the target

ok ill give it a shoot
 
Status
Not open for further replies.
Top