Close
Showing results 1 to 4 of 4

Thread: autohot key-

  1. #1

    Default autohot key-

    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 ????

  2. #2

    Default

    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]

  3. #3

  4. #4

    Default

    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.
    "For God's sake, don't stand there at 30 yards trying to cast a spell, he will melt your face period."

    Lokked

Similar Threads

  1. Having trouble with autohot key
    By Kallisa in forum General WoW Discussion
    Replies: 5
    Last Post: 07-10-2007, 04:45 AM

Posting Rules

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •