• 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!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

Invisibility Skill

Status
Not open for further replies.
Level 5
Joined
Jan 15, 2018
Messages
129
The base of this spell is a normal summon units spell. But when it is casts i want the caster to turn invisible (windwalk). I cant figure out a way to make him cast it. Do i need to create a dummy and have the dummy cast invisibility on him.

I know it needs to be triggered but i have no idea where to start in regards to the -actions.
 
Level 25
Joined
Feb 9, 2009
Messages
1,800
You want to create summon then turn invisible?

Use windwalk first and foremost, because triggering a critical hit after breaking invisibility would be tricky, while summoning a unit is easy peasy.

  • Events
    • Unit - A unit Starts the effect of an ability
  • Conditions
    • (Ability being cast) Equal to Some Spell
  • Actions
    • Set Point = (Position of (Triggering unit))
    • Unit - Create Y unit type at Point offset by 75 towards facing of (triggering unit)
    • Unit - Set expiration timer X seconds for last created unit
    • Unit - Add Classification of "Summoned" to (last creted unit) //This is important if you want dispel to damage it//
    • Special Effect - create "Summonerbear" at "origin" of (last created unit)
    • Special Effect - Destroy (Last Created Special Effect)
    • Custom script: call RemoveLocation(udg_Point)


lol re-read your post, above is still useful if you are still wanting windwalk's 'ignoring unit collision' and 'crit strike first hit' effect.

More in line with yours original post though would be:

  • Events
    • Unit - A unit Starts the effect of an ability
  • Conditions
    • (Ability being cast) Equal to Some Spell
  • Actions
    • Set Point = (Position of (Triggering unit))
    • Unit - Create Y (Dummy Unit with zero cast time) unit type at Point facing god knows where
    • Unit - Add Dummy Invisibility
    • Unit - Order (Last created unit) to Human Sorceress - Invisibility (Triggering unit)
    • Unit - Set expiration timer .5 seconds for (last created unit)
    • Custom script: call RemoveLocation(udg_Point)
 
Last edited:
Level 7
Joined
May 14, 2019
Messages
255
you can have windwalk as the ability that triggers an item to be given to the hero, the item's action(effect) is to summon something
 
Status
Not open for further replies.
Top