- Joined
- Aug 5, 2015
- Messages
- 202
i want making item,, the item having passive spell:
every 9 seconds enemy units within 800 AoE of my hero (item equipped) deal frost nova ability to 1 random unit
i have making trigger wonder why didnt work already try and over thinking for 2 hours still not work
take a look
every 9 seconds enemy units within 800 AoE of my hero (item equipped) deal frost nova ability to 1 random unit
i have making trigger wonder why didnt work already try and over thinking for 2 hours still not work
take a look
-
Frost Nova Auto
-
Events
- Unit - A unit Acquires an item
-
Conditions
- (Item-type of (Item being manipulated)) Equal to |cffff8800Frozen Mask|r
- (Unit-type of (Hero manipulating item)) Equal to Frozen Knight
-
Actions
- Set FROZENHERO = (Hero manipulating item)
- Set FROZENPOINT = (Position of FROZENHERO)
- Set FROZENGROUP = (Units within 800.00 of FROZENPOINT matching (((Matching unit) belongs to an enemy of (Owner of FROZENHERO)) Equal to True))
- Trigger - Turn on Frost Nova Auto on <gen>
-
Events
-
Frost Nova Auto on
-
Events
- Time - Every 3.00 seconds of game time
- Conditions
-
Actions
- Set FROZENHERO = (Triggering unit)
- Set FROZENPOINT = (Position of FROZENHERO)
- Set FROZENGROUP = (Units within 800.00 of FROZENPOINT matching (((Matching unit) belongs to an enemy of (Owner of FROZENHERO)) Equal to True))
-
Unit Group - Pick every unit in FROZENGROUP and do (Actions)
-
Loop - Actions
- Set FROZENRANDOM = (Random unit from FROZENGROUP)
-
Loop - Actions
- Unit - Create 1 Dummy (Frost Nova) for (Owner of FROZENHERO) at FROZENPOINT facing Default building facing degrees
- Unit - Add a 2.00 second Generic expiration timer to (Last created unit)
- Unit - Order (Last created unit) to Undead Lich - Frost Nova FROZENRANDOM
- Unit Group - Remove all units from FROZENGROUP
- Custom script: call RemoveLocation(udg_FROZENPOINT)
- Custom script: call DestroyGroup(udg_FROZENGROUP)
-
Events