Close
Page 10 of 12 FirstFirst ... 8 9 10 11 12 LastLast
Showing results 91 to 100 of 118

Thread: AutoHotKey

  1. #91

    Default

    Yea I'm sorry :[ I noticed how long it was after I posted it.

  2. #92

    Default

    What if I want to type something in party chat or guild chat? I start typing and both clients start typing, but I dont want the same thing to come out twice so I want to type with my main only.

    How can I do that, if there is anyway, without suspending the script?

  3. #93

    Default

    Quote Originally Posted by Zeio
    What if I want to type something in party chat or guild chat? I start typing and both clients start typing, but I dont want the same thing to come out twice so I want to type with my main only.

    How can I do that, if there is anyway, without suspending the script?
    From what I have read, the only way to do this is, indeed, to suspend the script.

  4. #94

    Default

    hey guys, um could anyone offer some help here I'm pretty clueless and new to this and don't know anything about scripting. I installed this program and ran this script that was posted to send "2" to both wow clients.
    [code:1]Code:
    WinGet, wowid, List, World of Warcraft

    ~2::
    KeyWait 2
    IfWinActive, World of Warcraft
    {
    ControlSend,, 2, ahk_id %wowid1%
    ControlSend,, 2, ahk_id %wowid2%
    Return
    }[/code:1]

    but it doesn't work. And I have no idea how to debug it. Any ideas where to start lol? Also, I am running both coppies of WOW from 1 installation, so far the only problem I've had is my macros used for all characters get deleted. Is there some reason I should bite the bullet and create another installation?

  5. #95

    Default

    u u have to have wow installed for every wow u run. just copy the wow in ur c;programfiles save to ur desktop

  6. #96

    Default

    Tried out AHK last night. It works... well, lets say 80% of the time:

    Example:
    1) I have "B" bind to bags (in Wow). Pressing "B" opens bags in both active(main) and inactive(clone) windows simultaniously about 3 to 5 times, then one of the windows "misses" a keypress and bags open alternate, for a while (3-5 times), then one "misses" again so the'yre back in synch, etc....

    2) second problem is movement: Press and hold E in active window wil make main toon strafe smoothly, but clone will be extremely jerky, unplayable. And visa-versa. (I'll try the scripting -suggestions for movement given here when i get home tonight.

  7. #97

    Default

    [code:1]~2::
    KeyWait 2
    IfWinActive, World of Warcraft
    {
    ControlSend,, 2, ahk_id %wowid1%
    ControlSend,, 2, ahk_id %wowid2%
    Return
    }[/code:1]

    I do not recommend using this kind of broadcasting.
    Either way, it always broadcast the key a second time to the active window.

    [code:1]
    IfWinActive, World of Warcraft
    2::
    ControlSend,, {2 down}, ahk_id %wowid1%
    ControlSend,, {2 down}, ahk_id %wowid2%
    KeyWait, 2
    ControlSend,, {2 up}, ahk_id %wowid1%
    ControlSend,, {2 up}, ahk_id %wowid2%
    Return
    [/code:1]

    I found that this model behaves exactly like it is supposed to with WoW.
    WoW reacts on both keystates (down it highlights the icon, up it launches the action/macro) and this script allows that, makes it look like normal keyboard broadcast.

    You can, of course, use any WoW window to broadcast your keystroke without the fear of double-sending the key.

    There is one downside though, and I still haven't figured a way out of it yet, and it is caused by how AHK handles hotkey threading.
    Say I press Shift-2 but don't release it yet, and add 3 to the shift-2 combo. So now Shift, 2 and 3 are pressed together. In AHK, I have a broadcast script telling my WoWs to press Shift-2 and Shift-3. BUT, once I pressed Shift-2, and since I haven't released it its thread stay active, Shift-3 doesn't activate UNTIL I release 2. Anyway, it does some weird behavior when you try to cast something, change your mind and try to cast something else before (Shift-2 down, 3 down, release 3, cast Shift-3, wait for cooldown and release Shift-2).

    It's not much of a problem if you are careful, plus I find the benefit of seemless keyboard broadcast much more interesting.

    To AlfaStation: your problem with your bags comes from the double B sent to the active window: sometimes WoW receives both Bs and just doesn't seem to be doing anything because of that. Remove the ~ and it should solve your problem.
    Dual-boxing 2 mages.

  8. #98

    Default

    Atsuki: You're a Genious!
    Thanks! /kiss

    Now it works how its supposed to ^^, even walking-strafe works fine like that in wow.

    (ps: you forgot #, but you're still a genious 8) )

  9. #99

    Default

    yeah, thanks, that script works for me. the other one not only didn't work but caused my computer to act really wonky.

  10. #100

    Default

    Quote Originally Posted by AlfaStation
    Atsuki: You're a Genious!
    Thanks! /kiss
    No problem.

    Quote Originally Posted by AlfaStation
    (ps: you forgot #, but you're still a genious 8) )
    I wrote it off the top of my head, what can I say...

    I'm still working on my own script for my dual mages setup, but once it's done, be sure I will be posting it whole.
    Dual-boxing 2 mages.

Similar Threads

  1. Autohotkey
    By Primevil in forum New Multi-Boxers & Support
    Replies: 2
    Last Post: 01-25-2009, 04:06 AM
  2. FTL with autohotkey
    By wowphreak in forum Software Tools
    Replies: 1
    Last Post: 11-21-2008, 07:43 AM
  3. Autohotkey
    By ddzang in forum Software Tools
    Replies: 3
    Last Post: 01-13-2008, 08:46 PM
  4. Autohotkey
    By Anonymous in forum Software Tools
    Replies: 3
    Last Post: 09-25-2007, 09:23 AM
  5. autohotkey
    By homerjunior in forum General WoW Discussion
    Replies: 0
    Last Post: 01-01-1970, 12:00 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
  •