- Joined
- Apr 22, 2020
- Messages
- 430
Can i request for someone to make me a trigger of a spell where enemy units inside the target area gets 180 damage and stunned for 6 seconds.
I'm using the Silence spell to be the dummy spell to be casted since it's an AOE spell, so in this trigger is supposed to create a dummy unit to the target location of the "Silence" spell and order it war stomp right? (Just trying to understand the trigger)Create a dummy unit at the target point of ability being cast and order it to cast war stomp.
Make sure the Custom War Stomp ability has no mana cost and make sure the Dummy unit is setup correctly.
Events:
A unit starts the effect of an ability
Conditions:
Ability being cast Equal to YourAbility
Actions:
Set Variable TempPoint = Target point of ability being cast
Create 1 Dummy for Triggering Player at TempPoint facing default building degrees
Add Custom War Stomp ability to last created unit
Order last created unit to Tauren Chieftain - War Stomp
Add a 1.00 second generic expiration timer to last created unit
Custom script: call RemoveLocation (udg_TempPoint]
If you delete the unit the spell would just be nothing it will not deal damage and stun.Wouldn’t it be simpler to use the inferno spell? You then can even add a delay before the stun.
For unit, just shift + enter the field and delete the unit, so nothing is actually summoned.
That might work but the downside of this spell is you cannot modify it's special effect the stun special effect i want it to have a different special effect.How about using a unit which has no model and disappears after 0.001 seconds then?
Yes. I would use Channel for the dummy ability though. It works good unless you want some other inbuilt functions that Channel cant do. Spells - ChannelI'm using the Silence spell to be the dummy spell to be casted since it's an AOE spell, so in this trigger is supposed to create a dummy unit to the target location of the "Silence" spell and order it war stomp right? (Just trying to understand the trigger)