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!
bump. Please anyone, this is my last hero spell for my new campaign, but I dont know how to make it deal damage when the arrows land and not when they are fired :/ would mean alot if someone could make it, or help me make sense from one of the spell sections similar spells, cause I cant figure it out.
Here is a picture of what comes up when I copy it over. I followed instructions & I have all the variables there I checked, except that ParabolaZ thingy, but the original map doesnt have it either. I checked arrays on each variable aswell and they are the same as in the original map aswell.
You could try to make an ability based on Cluster Rockets and make this trigger
Events
Unit - A unit Starts the effect of an ability
Conditions
(Ability being cast) equal to Multi Shot
Actions
Unit - Cause (Triggering Unit) to damage circular area after 0.00 seconds of radius 200 at (Target point of ability being cast) dealing ((Real(Agility of (Triggering Unit) (Include bonuses)))) x 5.00) damage of attack type Spells and damage type Normal
But then its the time issue :/ if you use it at close range damage comes after spell effect if using a wait time which fits a long range cast. And if cast at long range with a wait time fitting a close range will damage the units before the arrows have even got there. Using wait gives a timing issue so cant use that
Don't use wait, just look at the action
Change the underlined and bolded part xD
Unit - Cause (Triggering Unit) to damage circular area after 0.00 seconds of radius 200 at (Target point of ability being cast) dealing ((Real(Agility of (Triggering Unit) (Include bonuses)))) x 5.00) damage of attack type Spells and damage type Norma
u use trigger or Jass?
set T= target point of cast
set Angle=From caster to T
set CAST=Caster
create a dummy unit = arrow
2nd trigger each 0.04 sec move it from cast toward T
and pick evry unit around the ARROW and add do(condition unit in group = damaged unit)if then !nothing! else dmg it for 5x agi
and(add to group(damaged units)
when the arrows reches the MAX RANGE
destroj the unit group for leak
That didnt work, it dealt damage when the arrows was casted, so the enemies takes damage before the arrows has reached them. Also the stun makes the spell unusable aswell, since even if duration is reduced to 0.01 since 0 is infinite, it will still be a mini stun which interrupts casts, and that is not an effect Im after with this spell :/
u use trigger or Jass?
set T= target point of cast
set Angle=From caster to T
set CAST=Caster
create a dummy unit = arrow
2nd trigger each 0.04 sec move it from cast toward T
and pick evry unit around the ARROW and add do(condition unit in group = damaged unit)if then !nothing! else dmg it for 5x agi
and(add to group(damaged units)
when the arrows reches the MAX RANGE
destroj the unit group for leak
I use GUI
>2nd trigger each 0.04 sec move it from cast toward T< This one I dont know how to do. Is it just normal "Order Unit to Move to T" or some other trigger?
The other things I can probably figure out. But I dont see how this works as a volley though :/ Should be caster shoots out X number of arrows towards a target point, when they reach the point they deal 5x Agility to all enemies standing there.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.