Log in

View Full Version : autohot key-



vegy17
08-24-2008, 12:07 AM
ok so ive sused it all out got autohot key to work, only problem is when i walk "e.g W" its moves extreamly slow and takes about 1 min to actualy move teh smallest of steps, anyhelp ????

Jamien
08-25-2008, 12:10 AM
You meaning it walks slowly?
Have you got walk toggled on (default is / on the number pad)

Tasty
08-25-2008, 01:57 AM
Use /follow macros :)

Lokked
08-25-2008, 11:02 AM
I'm guessing your W script looks like this:


~w::
{
ControlSend,,w,ahk_id %wowid2%
ControlSend,,w,ahk_id %wowid3%
etc....
}
Return
OR


w::ClonesPush("{w Up}{w Down}")
When really you should not be hotkeying your movement keys (WASD) at all.

So, do not hotkey WASD. Instead, hotkey Left Cursor, Right Cursor, Up Cursor and Down Cursor like this, depending on your method of Hotkeys:


~up::
{
ControlSend,,{up Down},ahk_id %wowid2%
ControlSend,,{up Down},ahk_id %wowid3%
etc....
}
Return

~up Up::
{
ControlSend,,{up Up},ahk_id %wowid2%
ControlSend,,{up Up},ahk_id %wowid3%
etc....
}
Return

~left::
{
ControlSend,,{left Down},ahk_id %wowid2%
ControlSend,,{left Down},ahk_id %wowid3%
etc....
}
Return

~left Up::
{
ControlSend,,{left Up},ahk_id %wowid2%
ControlSend,,{left Up},ahk_id %wowid3%
etc....
}
Return
ETC...for Down and Right Cursor.

OR


~up ::ClonesPush("{up Down}")
~up Up::ClonesPush("{up Up}")
~left ::ClonesPush("{left Down}")
~left Up::ClonesPush("{left Up}")

I had responded to another post of yours regarding AHK. The learning curve is quite steep. I would suggest purchasing Keyclone.