• 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.

[Trigger] AutoCast.

Status
Not open for further replies.
Level 4
Joined
May 4, 2008
Messages
113
Do you mean how you detect when an autocast's effect is fired off?

Then no, it is not starts the effect of an ability.

Theres a few ways to do it and they're all fairly dodgy unfortunately, I'm not aware of the best way. To give you a basic idea, heres a simple trigger:

Code:
Events
 Unit - A unit is issued an order with no target

Conditions
 (Issued order) Equal to "flamingarrowson"

Actions
 Trigger - Turn on FlamingArrowActions

Make the actions in FlamingArrowActions trigger off "Unit takes damage". You'll then need to do another trigger similiar to this one that turns off the trigger (the order detected would be flamingarrowsoff, in this case). Be aware that this is not MUI, although there are probably more effective ways to do this that are.

EDIT: And just as a side note, I think you can detect it with Starts the effect of an ability, but only when it is cast manually (ie, you click on the autocast ability yourself and choose the target)
 
Status
Not open for further replies.
Top