Warcraft III resources & community, 2003–2006 · archived

Damage Dash spell help!

5 posts
#1

Damage Dash spell help!

Some spells ive seen are very cool where the hero moves really fast in a line dealing damage to all the enemy units that the hero collides with. Can someone tell me how to make the hero move like this :!: :!: :?: :?: :idea:
#2
Use Unit - Move unit to position with polar offset every .05 second. I'm not exactly sure what you qant, so I'll let you play around with it.
--donut3.5--
#3
donut3.5Use Unit - Move unit to position with polar offset every .05 second. I'm not exactly sure what you qant, so I'll let you play around with it.
--donut3.5--
Like in anime fight (i don't know if uve played)one of Kenshins spells is where he dashes in a line dealing damage to any unit in the line, thats basically what i want! My hero to dash in a line dealing damage to any unit in the line
#4
Channel base spell, point target, then use the following triggers:
Variables:
Unit(index of 12)
AntiLeakPoint
TargetPoint(index of 12)
AntiLeakUnitGroup
Unit begins casting an ability
ability = charge
set unit(player number of owner of triggering unit) = triggering unit
set targetpoint(player number of owner of triggering unit)=Target point of spell being cast

Every .05 seconds
For each integer a 1-12 do
set antileakpoint(integerA) = position of unit(integerA) offset by 20 toward facing of unit(integerA)
Move unit (integerA) to antileakpoint
Set AntileakGroup to all units within 200 of unit(integerA) and do Unit(integerA) damage Picked unit for 10 damage using damage type spells and type normal
If Distance between antileakpoint and target point(integerA) less than or equal to 50, then set unit(integerA) = no unit else do nothing
Custom Script: call DestroyGroup (AntiLeakUnitGroup)
Custom Script: call RemoveLocation (AntiLeakPoint)


Note this is coded for a map where each player gets one hero, but all players may get the same hero and use the ability at the same time.
The two editable fields are the damage and the offset.
--donut3.5--
#5
thx donut 3.5 i really appreciate it :D