Close
Showing results 1 to 6 of 6

Thread: Hotkey Help

Hybrid View

  1. #1

    Default Hotkey Help

    I have everything set up on a nice 2box with one screen. and the only thing i have left to do is getting both toons to get quests/acceptthem/handthem in etc

    Also i want to be able to loot without having to move to the other screen, if you know what i mean.

    Can this be done with autohotkey?

    like binding a key in keybindings too loot nearest or something, bcos if there is i cannot find it.

    i have everything else working and they are currently lvl 12 shammys

    Thanks for Help.

  2. #2

    Default

    no you can't do it with AHK

    you need mouse interaction for it unfortunately... there is supposed to be a mod for auto-looting but I haven't seen it.

  3. #3

    Default

    im guessing keyclone does the mouse tooo?

  4. #4

    Default

    no, there is nothing available to clone the mouse on one computer... you might be able to get AHK to do that and are welcome to test a script I wrote to do it (untested on wow but works well on paint)

    [code:1]; This script will click in 2 windows
    ; could be useful for AOE targetting
    ; use CTRL and Right Click to select the 2nd window
    ; use CTRL+ALT and left or right click to click in the window

    CTRL DOWN::
    SplashTextOn, 325, , Working...
    Sleep, 500
    SplasHtextoff
    return


    ^!LButton::
    coordmode, mouse, relative
    MouseGetPos, xpos, ypos, id, control
    WinGetPos, winX, winY, winWidth, winHeight, ahk_id %id%
    ; SplashTextOn, 600, , X = %xpos% Y = %ypos% Width = %winWidth% Height = %winHeight%
    ; Sleep, 500
    ; SplasHtextoff
    ControlClick, x%xpos% y%ypos%, ahk_id %id%,, LEFT, 1, NA
    ratioX := winWidth / xpos
    ratioY := winHeight / ypos

    WinGetPos, winX, winY, winWidth, winHeight, ahk_id %target%
    newX := winWidth / ratioX
    newY := winHeight / ratioY
    ControlClick, x%newX% y%newY%, ahk_id %target%,, LEFT, 1, NA
    ; SplashTextOn, 600, , ratioX = %ratioX% ratioY = %ratioY% newX= %newX% newY=%newY%
    ; Sleep, 2000
    ; SplasHtextoff
    return

    ^!RButton::
    coordmode, mouse, relative
    MouseGetPos, xpos, ypos, id, control
    ControlClick, x%xpos% y%ypos%, ahk_id %target%,, RIGHT, 1, NA
    ControlClick, x%xpos% y%ypos%, ahk_id %id%,, RIGHT, 1, NA
    return

    ^RButton::
    MouseGetPos, xpos, ypos, target, control
    SplashTextOn, 325, , Assigned target window %target%.
    Sleep, 2000
    SplasHtextoff
    return

    ^!p::
    Pause
    return

    ^!r::
    Reload
    return
    [/code:1]

  5. #5

    Default

    dont see how it works

  6. #6

    Default

    Read some of the AutoHotKey documentation, theres plenty about and it should explain what you're looking at quite well.
    Wilbur

Similar Threads

  1. pip hotkey
    By Pharnakes in forum New Multi-Boxers & Support
    Replies: 2
    Last Post: 07-30-2009, 10:33 PM
  2. Need help with auto hotkey
    By tankstorm in forum Software Tools
    Replies: 1
    Last Post: 11-07-2008, 12:50 AM
  3. Auto hotkey
    By darkkille267 in forum New Multi-Boxers & Support
    Replies: 2
    Last Post: 08-23-2008, 11:00 PM
  4. Hotkey Formations?
    By Tdog in forum General WoW Discussion
    Replies: 3
    Last Post: 03-23-2008, 12:45 PM
  5. HotKey - broadcasting
    By Erron in forum General WoW Discussion
    Replies: 5
    Last Post: 10-03-2007, 09:55 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
  •