Scout skill addition/update list

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Post Reply
Message
Author
kanta
Posts: 424
Joined: Thu Nov 11, 2010 4:08 pm

Scout skill addition/update list

#1 Post 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? -->
Scout/Knight/Rogue 70/66/66
User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: Scout skill addition/update list

#2 Post 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?
  • Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
  • I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
  • How to: copy and paste in micromacro
    ________________________
    Quote:
    • “They say hard work never hurt anybody, but I figure, why take the chance.”
          • Ronald Reagan
kanta
Posts: 424
Joined: Thu Nov 11, 2010 4:08 pm

Re: Scout skill addition/update list

#3 Post 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.
Scout/Knight/Rogue 70/66/66
User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: Scout skill addition/update list

#4 Post 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" />
Remember no matter you do in life to always have a little fun while you are at it ;)

wiki here http://www.solarstrike.net/wiki/index.php?title=Manual
User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: Scout skill addition/update list

#5 Post 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.
  • Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
  • I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
  • How to: copy and paste in micromacro
    ________________________
    Quote:
    • “They say hard work never hurt anybody, but I figure, why take the chance.”
          • Ronald Reagan
kanta
Posts: 424
Joined: Thu Nov 11, 2010 4:08 pm

Re: Scout skill addition/update list

#6 Post by kanta »

Ok, I'll try that
Scout/Knight/Rogue 70/66/66
User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: Scout skill addition/update list

#7 Post 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.
Remember no matter you do in life to always have a little fun while you are at it ;)

wiki here http://www.solarstrike.net/wiki/index.php?title=Manual
User avatar
MiesterMan
Posts: 543
Joined: Tue Jul 06, 2010 9:15 pm
Location: Between the Second and Third Circles of Hell

Re: Scout skill addition/update list

#8 Post 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.
Post Reply