Page 1 of 1
Shot becomes Shoot for some reason (scout/warden)
Posted: Thu Jul 21, 2011 4:51 am
by l3fromage
I just lvled up SCOUT_ENTLING_OFFERING ( scout/warden elite), and i noticed that my scout was not using shot anymore, when i checked the tooltip of the skill ... the once Shot became Shoot, and the position of hte skill was different in the Scout skill list. I changed to warden primary, and the skill went back to Shot. Then i went back to scout and it came back to Shoot. I think shoot has a different skill ID than Shot and that's why the bot can't figure it out which skill to cast. Can you please give me some tips on how to solve this problem ?
Thank you, and keep it up:X.
Re: Shot becomes Shoot for some reason (scout/warden)
Posted: Thu Jul 21, 2011 6:34 am
by rock5
Skills use the name for identification. The only way I can think to make it work is to add "Shoot" to the skills database. Just copy "Shot", change the name and id, add it to your profil and it should work. Try,
Code: Select all
<skill name="SCOUT_SHOOT" id="494070" consumable="1" range="200" cooldown="2" type="damage" target="enemy" />
Re: Shot becomes Shoot for some reason (scout/warden)
Posted: Thu Jul 21, 2011 8:03 am
by lisa
100% correct, I prob should have added this a while back.
I added it to the elite section of database myself
Code: Select all
<skill name="SCOUT_SHOOT" id="494070" consumable="1" range="180" cooldown="2" type="damage" target="enemy" />
Re: Shot becomes Shoot for some reason (scout/warden)
Posted: Thu Jul 21, 2011 9:22 am
by l3fromage
go go solar strike

... thx guys :X
Re: Shot becomes Shoot for some reason (scout/warden)
Posted: Thu Jul 21, 2011 10:28 am
by l3fromage
And sorry for the double post ... but i got one more question ... how do i make Snipe trigger only at the beginning of the combat ?

the pull thing does not work for me :/
edit:
ok i got it ... this works for me :
<skill name="SCOUT_SNIPE" modifier="" hotkey="VK_1" priority="100" maxuse="1" targethpper ="!99" />
Re: Shot becomes Shoot for some reason (scout/warden)
Posted: Thu Jul 21, 2011 11:23 pm
by MiesterMan
l3fromage wrote:And sorry for the double post ... but i got one more question ... how do i make Snipe trigger only at the beginning of the combat ?

the pull thing does not work for me :/
edit:
ok i got it ... this works for me :
<skill name="SCOUT_SNIPE" modifier="" hotkey="VK_1" priority="100" maxuse="1" targethpper ="!99" />
That'll be the pullonly attribute. It will only use the skill if you're not in combat (I think).
Code: Select all
<skill name="SCOUT_SNIPE" modifier="" hotkey="VK_1" priority="100" pullonly="true" />
You might not want to go with the targethpper ="!99" attribute as you could end up in combat with more than one monster and it could try to use snipe if it finds a new target with 100% hp (I'd say it would be a rare case considering cooldown but you never know).
Re: Shot becomes Shoot for some reason (scout/warden)
Posted: Fri Jul 22, 2011 12:25 am
by lisa
Unfortunately the pullonly is set up for melee only characters that have a ranged skill. So it would only use it to do initial pull but not during fight. It has no affect to ranged characters
Code: Select all
-- use only in pull phase (only for melees with ranged pull attacks)
I think we could probably add in a profile option to make a skill the skill used to do initial pull, I have been thinking about it for a while.
Re: Shot becomes Shoot for some reason (scout/warden)
Posted: Fri Jul 22, 2011 12:57 am
by rock5
What's wrong with making it the first skill and having maxuse="1"?
Re: Shot becomes Shoot for some reason (scout/warden)
Posted: Fri Jul 22, 2011 1:54 am
by lisa
It doesn't always set first skill to be the one to pull. an example
Code: Select all
<skills_scout>
<skill name="SCOUT_AUTOSHOT" hotkey="MACRO" priority="80" />
<skill name="SCOUT_SHOT" hotkey="MACRO" priority="60" />
<skill name="SCOUT_WIND_ARROWS" hotkey="MACRO" priority="70" />
<skill name="SCOUT_COMBO_SHOT" hotkey="MACRO" priority="85" />
<skill name="SCOUT_ARROW_OF_ESSENCE" hotkey="MACRO" priority="70" />
<skill name="SCOUT_FROST_ARROW" hotkey="MACRO" priority="70" />
</skills_scout>
Code: Select all
MACRO Test: ok
Ranged skill found: SCOUT_COMBO_SHOT
[DEBUG] CPU Frequency 1948.31
table: 041E5878
So it skipped autoshot, shot, windarrows before deciding to use comboshot.
My guess is it has more to do with priority. So set high priority and then maybe maxuse.
Re: Shot becomes Shoot for some reason (scout/warden)
Posted: Fri Jul 22, 2011 2:07 am
by MiesterMan
lisa wrote:Unfortunately the pullonly is set up for melee only characters that have a ranged skill. So it would only use it to do initial pull but not during fight. It has no affect to ranged characters
Really? I've been using pullonly on my scout's snipe for like ever...

Re: Shot becomes Shoot for some reason (scout/warden)
Posted: Fri Jul 22, 2011 2:37 am
by rock5
lisa wrote:My guess is it has more to do with priority. So set high priority and then maybe maxuse.
Of course, priority is the order in which it casts. It actually sorts them in priority order when it loads them.