Thank you, and keep it up:X.
Shot becomes Shoot for some reason (scout/warden)
Shot becomes Shoot for some reason (scout/warden)
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.
Thank you, and keep it up:X.
Re: Shot becomes Shoot for some reason (scout/warden)
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" />- 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
Re: Shot becomes Shoot for some reason (scout/warden)
100% correct, I prob should have added this a while back.
I added it to the elite section of database myself
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" />
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
wiki here http://www.solarstrike.net/wiki/index.php?title=Manual
Re: Shot becomes Shoot for some reason (scout/warden)
go go solar strike
... thx guys :X
Re: Shot becomes Shoot for some reason (scout/warden)
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 :
edit:
ok i got it ... this works for me :
<skill name="SCOUT_SNIPE" modifier="" hotkey="VK_1" priority="100" maxuse="1" targethpper ="!99" />
- MiesterMan
- Posts: 543
- Joined: Tue Jul 06, 2010 9:15 pm
- Location: Between the Second and Third Circles of Hell
Re: Shot becomes Shoot for some reason (scout/warden)
That'll be the pullonly attribute. It will only use the skill if you're not in combat (I think).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" />
Code: Select all
<skill name="SCOUT_SNIPE" modifier="" hotkey="VK_1" priority="100" pullonly="true" />My RoM Bot toys:
- Object Viewer: http://www.solarstrike.net/phpBB3/viewt ... =27&t=2619
Teleporter Functions: http://www.solarstrike.net/phpBB3/viewt ... =27&t=2605
Waypoint Finder: http://www.solarstrike.net/phpBB3/viewt ... =27&t=2616
Mail Functions: http://www.solarstrike.net/phpBB3/viewt ... =27&t=2612
Equipment Swapper(TempFixed): http://www.solarstrike.net/phpBB3/viewt ... =27&t=2571
Re: Shot becomes Shoot for some reason (scout/warden)
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
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.
Code: Select all
-- use only in pull phase (only for melees with ranged pull attacks)
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
wiki here http://www.solarstrike.net/wiki/index.php?title=Manual
Re: Shot becomes Shoot for some reason (scout/warden)
What's wrong with making it the first skill and having maxuse="1"?
- 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
Re: Shot becomes Shoot for some reason (scout/warden)
It doesn't always set first skill to be the one to pull. an example
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.
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
My guess is it has more to do with priority. So set high priority and then maybe maxuse.
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
wiki here http://www.solarstrike.net/wiki/index.php?title=Manual
- MiesterMan
- Posts: 543
- Joined: Tue Jul 06, 2010 9:15 pm
- Location: Between the Second and Third Circles of Hell
Re: Shot becomes Shoot for some reason (scout/warden)
Really? I've been using pullonly on my scout's snipe for like ever...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
My RoM Bot toys:
- Object Viewer: http://www.solarstrike.net/phpBB3/viewt ... =27&t=2619
Teleporter Functions: http://www.solarstrike.net/phpBB3/viewt ... =27&t=2605
Waypoint Finder: http://www.solarstrike.net/phpBB3/viewt ... =27&t=2616
Mail Functions: http://www.solarstrike.net/phpBB3/viewt ... =27&t=2612
Equipment Swapper(TempFixed): http://www.solarstrike.net/phpBB3/viewt ... =27&t=2571
Re: Shot becomes Shoot for some reason (scout/warden)
Of course, priority is the order in which it casts. It actually sorts them in priority order when it loads them.lisa wrote:My guess is it has more to do with priority. So set high priority and then maybe maxuse.
- 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