Page 1 of 1

WoW Hunter disengage

Posted: 31 Jan 2015, 04:57
by tenderizer
Hello,

I'm apparently new here and to be honest have not much idea about how to start with this endeavour.

Basically I want a script that if I hit one key it:

1. instantly turns your character 180° (I'd assume you get it to turn fast by pressing "w" towards the mouse pointer which is a few pixels below the center.)
2. disengages (the in-game skill)
(if possible) 3. Turn back facing the same direction as you did before the key press.

Thank you so much for your help!

Re: WoW Hunter disengage

Posted: 31 Jan 2015, 07:38
by alvitawa
I'm not very adept at world of warcraft, but here's a few tips:

1. I guess you can turn arout using the D or A key, by pressing it long enoough:

Code: Select all

Loop 20
{
    Send {Tab down}  ; Auto-repeat consists of consecutive down-events (with no up-events).
    Sleep 30  ; The number of milliseconds between keystrokes (or use SetKeyDelay).
}
Send {Tab up}  ; Release the key.
(https://www.autohotkey.com/docs/commands/Send.htm)
2.Use ImageSearchto find the button and Clickto click on it
3.The same as in 1

Re: WoW Hunter disengage

Posted: 02 Feb 2015, 09:56
by tenderizer
Hi, thank you so much for your help!

The thing is, to make this efficient the character has to turn 180° as fast as possible.

Re: WoW Hunter disengage

Posted: 06 Feb 2015, 09:37
by alvitawa
tenderizer wrote:Hi, thank you so much for your help!

The thing is, to make this efficient the character has to turn 180° as fast as possible.
As I said make a script hold down the "turn" key, it will only be able to make you turn as fast as you could by hand.