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 ????
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 ????
You meaning it walks slowly?
Have you got walk toggled on (default is / on the number pad)
[align=center]Jamien - 70 Rogue
Aphrim - 70 Priest
Zapcowone-four - 70 Shaman
Niian - 65 Paladin
[/align]
Use /follow macros![]()
I'm guessing your W script looks like this:
OR~w::
{
ControlSend,,w,ahk_id %wowid2%
ControlSend,,w,ahk_id %wowid3%
etc....
}
Return
When really you should not be hotkeying your movement keys (WASD) at all.w::ClonesPush("{w Up}{w Down}")
So, do not hotkey WASD. Instead, hotkey Left Cursor, Right Cursor, Up Cursor and Down Cursor like this, depending on your method of Hotkeys:
ETC...for Down and Right Cursor.~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
OR
I had responded to another post of yours regarding AHK. The learning curve is quite steep. I would suggest purchasing Keyclone.~up ::ClonesPush("{up Down}")
~up Up::ClonesPush("{up Up}")
~left ::ClonesPush("{left Down}")
~left Up::ClonesPush("{left Up}")
"For God's sake, don't stand there at 30 yards trying to cast a spell, he will melt your face period."
Lokked
Connect With Us