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

Passive chain lightning item - Maelstrom - dota 1

Status
Not open for further replies.
Level 4
Joined
Feb 24, 2018
Messages
71
Also,about the trigger which you provided :

Unit - Order (Last created unit) to Orc Far Seer - Chain Lightning (Attacked unit)

Unit-Targeted Unit Order doesn't have every spell like breath of fire or breath of frost. Are the options listed there the only one available or I am missing something ?
 
Level 22
Joined
Aug 27, 2013
Messages
3,973
That option exists. You can find it in "Unit - Issue Order Targeting a Point"

The trigger should look like this
  • Set TempPoint = (Position of (Attacked unit))
  • Unit - Order (Last created unit) to Neutral Pandaren Brewmaster - Breath Of Fire TempPoint
  • Custom script: call RemoveLocation(udg_TempPoint)
or this
  • Set TempPoint = (Position of (Attacked unit))
  • Unit - Order (Last created unit) to Neutral - Breath Of Frost TempPoint
  • Custom script: call RemoveLocation(udg_TempPoint)
 
Level 21
Joined
Apr 8, 2017
Messages
1,530
That option exists. You can find it in "Unit - Issue Order Targeting a Point"

The trigger should look like this
  • Set TempPoint = (Position of (Attacked unit))
  • Unit - Order (Last created unit) to Neutral Pandaren Brewmaster - Breath Of Fire TempPoint
  • Custom script: call RemoveLocation(udg_TempPoint)
or this
  • Set TempPoint = (Position of (Attacked unit))
  • Unit - Order (Last created unit) to Neutral - Breath Of Frost TempPoint
  • Custom script: call RemoveLocation(udg_TempPoint)
Ya, that is to casts spells like Shocking wave or Carrion swarm.
 
Level 22
Joined
Aug 27, 2013
Messages
3,973
I already gave you the sample trigger exactly for the spell to appear in front of the item's owner. You created the dummy at the attacking unit position which makes the dummy cast the spell right at that place. You should create the dummy at the caster's location facing the attacking unit.
 
Status
Not open for further replies.
Top