HomeUser Control Panel (unavailable in archive)ForumsTutorialsArt GalleryResourcesMaps

Autocast Trigger

03-12-2004, 01:32 AM#1
RUAsHipAsMe
I'm working on an AoS style map and theres a skill that I based off searing arrows. Is there an event that can recognize when Auto-Cast is turned on?
03-12-2004, 01:34 AM#2
weaaddar
Event-A generic unit is issued an order with no target
Condition Triggering Order==flamingarrowson (i think thats the string of it)
Action- Whatever you want.
03-12-2004, 01:36 AM#3
RUAsHipAsMe
Thanks Man! I've been wandering around triggers for hours! Nothing seemed to work.

*EDIT* More problems! I realized that I didn't need it for a custom ability, (worked around it a different way) BUT the trigger doesn't work at all! Are you sure thats how its done? Is there a place to get the string for sure?
03-12-2004, 01:44 AM#4
RUAsHipAsMe
Oh crud, sorry to double post but I'm afraid if I edit no one will look at it...

So ANYWAYS, is there a way to do that with a CUSTOM ability?
03-12-2004, 02:56 AM#5
RUAsHipAsMe
More problems! I realized that I didn't need it for a custom ability, (worked around it a different way) BUT the trigger doesn't work at all! Are you sure thats how its done? Is there a place to get the string for sure?
03-12-2004, 06:57 PM#6
RUAsHipAsMe
Sorry but this fell all the way back a page sooo, bump
04-12-2004, 02:51 PM#7
Guinsoo
Try this:
Trigger 1
Event - A unit is issued an order
Condition - order equal to SearingArrowsTurnOn (or whatever it is)
Action - Set SearingOn = true
Trigger 2
Event - A unit is issued an order
Condition - order equal to SearingArrowsTurnOff
Action - Set SearingOn = false
Trigger 3
Event - A unit is attacked
Conditions - SearingOn = true, Attacking unit is the correct one, correct ability, whatever else ya need
Actions - Whatever

I haven't tried this, but I'm pretty sure it'll work. Anyway, I'll be trying it soon for my own map.