- Joined
- Oct 20, 2012
- Messages
- 3,075
Hey guys, I'm kinda stuck with making this trigger MUI.. (I know, i'm kinda dumb at making things MUI..)
I'm trying to make a special effect where whenever a creep dies, his corpse will disappear like in the feral spirit spell. but I don't want it to be instant, I want it to have a small delay before disappearing.. (so that part of the death anim plays)
yes. a gif. in case you misunderstood me. XD
aaaaannnddd since I haven't made something that's MUI in quite a while. I'm having a hard time doing it.. XD so can you guys help me?
I'm trying to make a special effect where whenever a creep dies, his corpse will disappear like in the feral spirit spell. but I don't want it to be instant, I want it to have a small delay before disappearing.. (so that part of the death anim plays)
yes. a gif. in case you misunderstood me. XD
-
cool but not MUI Creep Death
-
Events
- Unit - A unit Dies
-
Conditions
- (Owner of (Triggering unit)) Equal to Player 12 (Brown)
- ((Triggering unit) is A Hero) Equal to False
-
Actions
- Set Temp_point = (Position of (Triggering unit))
- Wait 1.00 seconds
- Unit - Remove (Triggering unit) from the game
- Special Effect - Create a special effect at Temp_point using Abilities\Spells\Orc\FeralSpirit\feralspirittarget.mdl
- Special Effect - Destroy (Last created special effect)
- Custom script: call RemoveLocation(udg_Temp_point)
-
Events