• 🏆 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!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

Spell AoE

Status
Not open for further replies.
Level 20
Joined
Jul 14, 2011
Messages
3,213
You have to trigger the effect.

There's a spell called "Channel" That allows you to customize your skill almost in any way you want (except missiles). You can set there if it's an AoE spell, and the radius, and if you want to display the Castin Circle. BUT the spell does nothing else AND keep track of the Ability ID. If 2 spells with the same ability id are in the same unit, it will cast the selected one, but cooldown will go for both. May get a bit buggy, just don't do it :p

To trigger the effect just "Pick every unit in 200 range from *YourPointVariable* and do" -> Create Dummy Unit
-> Add Curse to Dummy Unit
-> Order Dummy Unit to curse Picked Unit.
-> Remove Dummy Unit.
-> Clear the Point (call RemoveLocation(udg_YourPointVariable)
-> Clear the Group (call DestroyGroup(udg_YourGroupVariable) <- Only if you declared the group into a variable, otherwise just do "set bj_wantDestroyGroup = true" before the "pick every unit" action.
 
Status
Not open for further replies.
Top