Page 1 of 1

Scout skill addition/update list

Posted: Wed Jun 01, 2011 9:03 pm
by kanta
Not in Skills.xml

Code: Select all

<skill name="SCOUT_ARCHERS_GLORY" concentration="35" cooldown="180" type="buff" buffname="506451" target="self" /> <!-- Item set skill -->
<skill name="SCOUT_SHATTERSTAR_STORM" concentration="30" cooldown="60" range="120" type="damage" target="enemy" /> <!-- Item set skill, use is the same as mage thunderstorm -->

needs updated

Code: Select all

<skill name="SCOUT_REPELLING_ARROW" mana="30" manainc="3.0" range="150" cooldown="25" />
<skill name="SCOUT_MANA_CONVERSION" mana="50" manainc="5.0" cooldown="60" type="buff" target="self" /> <!-- also uses 5% of base MP in addition to level determined MP cost -->
<skill name="SCOUT_HEALING_SHOT" mana="20" manainc="2.0" range="150" cooldown="8" /> <!-- use on self requires clicking on own portrait -->
<skill name="SCOUT_TARGET_AREA" concentration="3" type="buff" buffname="500934" target="self" /> <!-- stays active until concentration runs out or skill is cast again to turn it off, toggleable? -->
<skill name="SCOUT_DETECTION" concentration="9" type="buff" buffname="500933" target="self" /> <!-- stays active until concentration runs out or skill is cast again to turn it off, toggleable? -->

Re: Scout skill addition/update list

Posted: Thu Jun 02, 2011 4:33 am
by rock5
With healing shot, what happens if you try to use it when you have nothing targeted?

What happens if you have a mob targeted when you try to use it?

Re: Scout skill addition/update list

Posted: Thu Jun 02, 2011 6:17 pm
by kanta
With either of the situations you have asked about, it comes up with a dagger for cursor like what happens when you cast an attack skill without having a target. When I target myself using F1 it works properly.

Re: Scout skill addition/update list

Posted: Thu Jun 02, 2011 9:41 pm
by lisa
try just adding

Code: Select all

target="self"

Code: Select all

<skill name="SCOUT_HEALING_SHOT" mana="20" manainc="2.0" range="150" cooldown="8" target="self" />

Re: Scout skill addition/update list

Posted: Fri Jun 03, 2011 10:01 am
by rock5
lisa wrote:try just adding

Code: Select all

target="self"
I don't think that will work. I think "self" assumes it automatically casts on yourself even if you have a target. The bot never actually changes targets to cast on yourself. Technically speaking it's a "friendly" skill but I had a look at the code and it looks like it only uses "friendly" for buffs.

I don't think the bot is capable of casting that skill on it's own. You would have to write your own code, probably in the onskillcast section, to check your health and switch targets to cast this skill then switch back to the mob.

Re: Scout skill addition/update list

Posted: Fri Jun 03, 2011 1:06 pm
by kanta
Ok, I'll try that

Re: Scout skill addition/update list

Posted: Tue Jun 14, 2011 8:37 am
by lisa
commited the elites and the manainc in rev 606.

I added the buff skills but made them commented out with <!-- --> as they are unsual skills and not sure how the bot will react. So the data is there if people want to play around with them.

Re: Scout skill addition/update list

Posted: Wed Jun 15, 2011 12:07 am
by MiesterMan
If you run a scout warriors and use the elite that keeps your focus up 100% of the time the buffs work great. I wrote those in myself as well.