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

NEED SPELL HELP

Status
Not open for further replies.
Level 2
Joined
Mar 7, 2006
Messages
17
I found out that a spell can be casted several times much faster if the cooldown is removed, but there is still some kind of casting timer, cuz the icon border turns green and the spell cannot be casted, unless you move, or preform a different action, how can this be disabled so that a spell like shockwave can be casted insantly after the last casting of the same spell?
 
Level 4
Joined
Jan 30, 2006
Messages
93
Well u need a dummy unit for this(if you dont now what it is look in "the baseics of trigger enhanced spells" on top of forum) mhere is the code
Code:
Events
    Unit - A unit Starts the effect of an ability
Conditions
    (Ability being cast) Equal to Shockwave
Actions
    For each (Integer A) from 1 to (how many times u want it to cast EXTRA), do (Actions)
        Loop - Actions
            Unit - Create 1 -dummy- for (Owner of (Triggering unit)) at (Position of triggering unit) facing Default building facing degrees
            Unit - Add Shockwave(dummy) to (Last created unit)
Unit - Set level of Shockwave(dummy) for (Last created unit) to (Level of Shockwave for (Triggering unit))
            Unit - Add a 1.00 second Generic expiration timer to (Last created unit)
            Unit - Order (Last created unit) to Orc Tauren Chieftain - Shockwave (Target point of ability being cast)
            Wait (amount of time you want delay) seconds
ok for this part Unit - Add Shockwave(dummy) to (Last created unit)
copy youre shockwave to this and on editor suffix make (dummy) set it to unit ability

i believe this is what you want
 
Status
Not open for further replies.
Top