HomeUser Control Panel (unavailable in archive)ForumsTutorialsArt GalleryResourcesMaps

check autocast condition?

02-19-2007, 12:24 PM#1
EidolonFlame
is it possible to check whether a skill is autocasted as a condition? if so, how?
02-19-2007, 03:34 PM#2
StockBreak
Well, you should make 2 trigger (let's take poison arrows as example):
1) A unit is issued an order with no target -> if issued order equal to "poisonarrows" -> set autocast = TRUE (where autocast is a boolean variable);
2) A unit is issued an order with no target -> if issued order equal to "unpoisonarrows" -> set autocast = FALSE (where autocast is a boolean variable);

Now if autocast variable is true the ability is on autocast, otherwise it is off.
02-19-2007, 03:39 PM#3
EidolonFlame
great minds think alike! i just finished doing that xD thanks anyway