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

how can i cast spell without channeling it

Status
Not open for further replies.
Level 25
Joined
Jul 10, 2006
Messages
3,315
Event - unit starts the effect of an ability
Condition - ability equal to my ability
Actions:
Set loc = target ability location
Unit - create 1 dummy caster at loc
Unit - give Blizzard to last created unit
Unit - order last created unit to cast Blizzard at loc
unit - add a 5 second expiration timer to last created unit
Custom script: call RemoveLocation(udg_loc)

The unit should also have the "Locust" ability to prevent it being selected or targeted.
 
Level 26
Joined
Mar 19, 2008
Messages
3,140
@CheckeredFlag, the problem is, everything, every map is using such spells - thus, you could just check spell section or google for examples. This question has been asked a thousand times.

You use dummy which actually possess the "effect" ability and order it to cast that spell where you wish to.
The caster on the other hand, has a "dummy" ability, meaning that it does not really do anything, except for being an "event" for effector trigger.
 
Status
Not open for further replies.
Top