Close
Showing results 1 to 4 of 4

Thread: AHK problem

Hybrid View

  1. #1

    Default AHK problem

    Hi all,

    Am doing some dual-boxing - all going fine so far with no real problems.

    Only minor thing however is with my AHK script for handling the 'r' key (I use r to force my slave (a hunter) to step backwards - need to be able to hold it so i can manouver(sp?) him)

    I currently have;

    Code:
    ~r::
    IfWinActive, World of Warcraft
    {
    ControlSend, , {r Down}, ahk_id %wowid1%
    ControlSend, , {r Down}, ahk_id %wowid2%
    }
    Return
    
    ~r Up::
    IfWinActive, World of Warcraft
    {
    ControlSend, , {r Up}, ahk_id %wowid1%
    ControlSend, , {r Up}, ahk_id %wowid2%
    }
    Return
    However, this always gives a double hit in the active window (if I'm typing something, it always comes up with a 'rr' not 'r'). Any thoughts on how to get round this?

    Thanks

  2. #2

    Default

    Hi there Shanks, welcome to the forums!

    I'm not actually going to be able to answer your question as I don't use AHK; because when I starting to multibox, I looked at the AHK configuration file and cried. ;(

    But I can give you some suggestions for some alternatives that I think are easier to configure, should you be willing to try them out.

    Keyclone - This has some minor costs associated with it, but comes with a lot of useful features for wow and there is an abundant of information available on how to configure it. The author of keyclone is active on these forums.

    HotKeyNet - This one is currently free, also has a lot of useful features for wow, and the author is active on these forums as well.

    I personally use HotKeyNet - there is a quick start guide , some rules for wow and a wow forum .

    In HKN you label your World of Warcraft windows, so label your main window, MainWow and your hunter's window, HunterWow.

    To get your r key to work so that your hunter steps backward (hold r down) you would use the following:

    Code:
    <HoldDownKey r>
    <PassThrough>
    <SendLabel HuntersWow>
    IMHO 3 lines > 15 lines of code

    Anyway, if you have already evaluated these two options and chose AHK, I'm sorry for wasting your time.

    As an aside; I'd say you posted this question in the wrong forum; you probably should have posted it in, New Multiboxers & Support .

    Good luck with your multiboxing adventures...
    Jafula.
    Jamba - Jafula's Awesome Multi Boxer Assistant. An addon for YOU.

  3. #3

    Default RE: AHK problem

    Code:
    ~r::
    IfWinActive, World of Warcraft
    {
    ControlSend, , r, ahk_id %wowid1%
    ControlSend, , r, ahk_id %wowid2%
    }
    Return
    That works for me.

  4. #4

    Default

    You need something like this:

    Required at top of script for the code in the next section (or modify the "r" key section to fit your initialization):
    Code:
    WinGet, wowid, List, World of Warcraft
    WinActivate, ahk_id %wowid1%
    WinActivate, ahk_id %wowid2%
    The "r" key.
    Code:
    ~r::
    IfWinActive, World of Warcraft
    {
    ControlSend, , {r Down}, ahk_id %wowid1%
    ControlSend, , {r Down}, ahk_id %wowid2%
    }
    Return
    
    ~r Up::
    IfWinActive, World of Warcraft
    {
    ControlSend, , {r Up}, ahk_id %wowid1%
    ControlSend, , {r Up}, ahk_id %wowid2%
    
    }
    Return
    Ex-WoW 5-boxer.
    Currently playing:
    Akama [Empire of Orlando]
    Zandantilus - 85 Shaman, Teebow - 85 Paladin, Kodex - 85 Rogue.

    Definitely going to 4-box Diablo 3 after testing the beta for how well this would work.

Similar Threads

  1. Problem with v1.9
    By Zuco in forum New Multi-Boxers & Support
    Replies: 3
    Last Post: 05-23-2009, 08:19 PM
  2. My Problem
    By Tiddily in forum New Multi-Boxers & Support
    Replies: 4
    Last Post: 03-08-2009, 09:26 PM
  3. new problem =/ solved, another new problem
    By jheinn in forum New Multi-Boxers & Support
    Replies: 3
    Last Post: 09-16-2008, 08:21 PM
  4. PiP problem
    By chazz in forum Software Tools
    Replies: 2
    Last Post: 06-15-2008, 10:18 AM
  5. a problem with k/b
    By unit187 in forum General WoW Discussion
    Replies: 2
    Last Post: 10-28-2007, 12:50 PM

Posting Rules

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