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

Combination of Spells

Status
Not open for further replies.
Level 5
Joined
Jun 8, 2008
Messages
84
hey guys is there a way to make two spells come out at a sametime from a new named spell.?
suppose i want death coil and rain of fire to come at a time by clicking only 1 button? is it possible by a trigger or something?
 
Level 28
Joined
Mar 25, 2008
Messages
2,955
Cast a dummy unit which spawns the deathcoil and another one which casts rain of fire.
  • Events
    • Unit - A unit starts the effect of an ability
  • Conditions
    • Ability being cast equal to *your ability*
  • Actions
    • Set temploc1 = Position of (Triggering Unit)
    • Set tempunit= Target unit of ability being cast
    • Set temploc2= (Position of (tempunit[Player Number of (Owner of (Triggering Unit)))
    • Unit - Create 1 dummy_unit1 for (Owner of (Triggering Unit)) at temploc1 facing (Facing of (Triggering Unit)
    • Unit - Add a 4 seconds standard expiration timer to (last created unit)
    • Unit - Add *your deathcoil ability* to (last created unit)
    • Unit - Order (last created unit) to Undead DeathKnight 'Deathcoil' tempunit[Player Number of (Owner of (Triggering Unit))]
    • Unit - Create 1 dummy_unit2 for (Owner of (Triggering Unit)) at temploc1 facing (Facing of (Triggering Unit)
    • Unit - Add a x seconds standard expiration timer to (last created unit)
    • Unit - Add *your rain of fire ability* to (last created unit)
    • Unit - Order (last created unit) to Neutral Cryptlord 'Rain of fire' temploc2
    • Custom script: call RemoveLocation(udg_temploc1)
    • Custom script: call RemoveLocation(udg_temploc2)
The 'x' should be filled in by you because i don't know how long the rain of fire lasts (number of waves)
 
Status
Not open for further replies.
Top