Press Hotkeys Faster?
Press Hotkeys Faster?
Is it possible to reduce the delay in how fast hot keys are executed? There is a boss that I can beat easily if I manually depress keys but when I let the bot do it I get about 50/50 results.
Thanks
g
Thanks
g
Re: Press Hotkeys Faster?
well the bot is doing hundreds of calculations every second to decide what skills to use, whether to heal, pot. It is monitoring so many things and doing so many things it is difficult to make the bot play as a human does.
Now if you know for sure you can kill something easily and not require all the usual health checks and buff checks you can simply make your own code to tell the bot which skills to use.
Easiest would be to make a userfunction for boss fights.
just doing this as an example
Then you can do in your waypoint.
That was just very general, but doing it with key presses takes out all the checks and will make the start of the fight much faster.
Now if you know for sure you can kill something easily and not require all the usual health checks and buff checks you can simply make your own code to tell the bot which skills to use.
Easiest would be to make a userfunction for boss fights.
just doing this as an example
Code: Select all
function bossfight()
keyboardPress( key.VK_1 ) -- buff
yrest(700) -- to allow for global cooldown from instant cast
keyboardPress( key.VK_2 ) --buff
yrest(700) --
keyboardPress( key.VK_3 ) --buff
yrest(700) --
keyboardPress( key.VK_4 ) -- first big attack, probably 4 sec cast
yrest(3700) --skill with 4 second cast
keyboardPress( key.VK_5 ) -- instant attack
yrest(700)
keyboardPress( key.VK_6 ) -- instant attack
player:fight(); -- it will now just use normal fighting to kill boss.
end
Code: Select all
<!-- # 50 --><waypoint x="1" z="284" y="7">
local boss = player:findNearestNameOrId(152384) --boss ID
if boss then
player:target(boss)
bossfight()
end
</waypoint>
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: Press Hotkeys Faster?
Thanks Lisa. I'll try what you suggested. I also use NTbuff and I have the check periods set really low. Just recently, NTbuff froze up so it didn't do the checks and I realized that it seemed to be running the macro a lot faster. Definitley seems like just a matter of streamlining my own stuff I have running rather it be the bot or the addons.
- Administrator
- Site Admin
- Posts: 5313
- Joined: Sat Jan 05, 2008 4:21 pm
Re: Press Hotkeys Faster?
You can try setting SKILL_GLOBALCOOLDOWN to 1000 in your profile and see if that helps. Adjust as necessary.
Re: Press Hotkeys Faster?
Very nice, thanks! Played around with it and saw some noticeable differences comparing 50, 200, 500 and 1000. For now it's staying at 200. Thanks again!
Re: Press Hotkeys Faster?
How would I put that in my profile?
Like this?
Like this?
Code: Select all
<option name="SKILL_GLOBALCOOLDOWN" value="1000" />
Scout/Knight/Rogue 70/66/66
Re: Press Hotkeys Faster?
Yes. Good guess.kanta wrote:How would I put that in my profile?
Like this?Code: Select all
<option name="SKILL_GLOBALCOOLDOWN" value="1000" />
- 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: Press Hotkeys Faster?
While this does help my attacking speed I found a problem using this. I tried with 200 and 500. Both ways make it so the player:mount() function fails. It begins summoning the mount but then begins to run during the cast so it gets canceled.
Scout/Knight/Rogue 70/66/66
Re: Press Hotkeys Faster?
Just add a pause after mounts. eg. "yrest(500)"
- 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: Press Hotkeys Faster?
press ctrl+alt+del and stablish higher priority to micromacro, (right button)
You study or work ? I'm bot manager.
Who is online
Users browsing this forum: No registered users and 7 guests