Close
Page 7 of 12 FirstFirst ... 5 6 7 8 9 ... LastLast
Showing results 61 to 70 of 118

Thread: AutoHotKey

  1. #61

    Default

    I'm new to AutoHotkey, have been using the dual window/alt tabbing mode of dual boxing for a while now. Anywho found it and now would like to try it out. My first attempt at scripting has been less then succesfull. What I am attempting to do is with a single Key press, Target and cast a heal.
    I've adapted Sorn's window selection script to LOTR.

    In game key for Target =F1, F2
    The Key I have in my Autobar for the spell to be cast: Q

    My Script:
    [code:1]
    WinGet,lotrid,list,The Lord of the Rings Online™: Shadows of Angmar™
    #IfWinActive, The Lord of the Rings Online™: Shadows of Angmar™
    ^1::
    ControlSend,, {F2} , ahk_id %Cloneid%
    ControlSend,, q , ahk_id %Cloneid%
    Return
    ^2::
    ControlSend,, {F1}, ahk_id %Cloneid%
    ControlSend,, q, ahk_id %Cloneid%
    Return

    [/code:1]
    I've tried changing the id# to see if It's sending to the wrong window, but that doesn't fix anything, it doesn't really seem to do... ANYTHING in game, won't even use the party targeting system (The F keys)

    I've read through the manual but unfortunately cannot come up with a solution on my own, any help would be great.

    Shame there is so much development for WoW and such little reguard for the other MMO's..

  2. #62

    Default

    Quote Originally Posted by Sorn
    A little more screenies for you of the interface, I ditch the other one, thought through it a little more and have even more intuitive design, that will allow for easier, and faster mapping of spells & abilities.



    As you can see it's coming right along, and i'm hard at work still. If I could recruit some assistance from those of you waiting on this script, i need a list of the Point and Target cursor then click spells / abilities for each class. (IE. Hunter's Eagle Eyes) it would certainly help speed up the completion.

    I got some great surprises in store for you all on how to manage you're clone windows as well.

    that looks great!! You will have to write up a totorial on how to use it lol, if u need help testing or anything, im sure many user here will be glad to help!

  3. #63

    Default

    Thanks Sorn for the assistance on this piece, if you have a compiled tutorial or just want to slap everything together, I can place it at the top of this thread and /or sticky a new one for you.

  4. #64

    Default

    Quote Originally Posted by Ellay
    Thanks Sorn for the assistance on this piece, if you have a compiled tutorial or just want to slap everything together, I can place it at the top of this thread and /or sticky a new one for you.
    Thank you, Once I have it fully operational I'll write up a tutorial and release the script, not sure how you all feel about compiled exe's or just want the staight script. I'll request a new thread so it's easier to track changes and revisions and offer assistance on it.

  5. #65

    Default

    I found this on the Autohotkey Forum site.
    http://www.autohotkey.com/forum/topi...t=pause+script

    What if I want to control the script running manually by pausing whenever I wish to pause?

    after script runs then somehow I want to pause to look at the output on the screen then after that I cancel my pause manually then let the script runs again.

    -- The Reply --

    Try something like:
    Code (Copy):
    [code:1]Pause::Pause, Toggle, 1 ; toggle-pause underlying thread[/code:1]
    (The first "Pause" is the Pause key; the second is a command-call.)
    The question I had is will this type of script help "pause" my script so I can use the keyboard like normal until I "unpause" the script?

    The Problem I have is that I get a tell, I reply to the tell, and watch my alt jump every time I press the space bar. This really isnt too big of an issue, but I had to move most of my key binds to Ctrl+ "whatever key" to keep the alt from casting spells while I type to my friend.

    If anybody has made a nice pause script or know of one that can fix this issue, it would be sweet! I could then keybind all the keys needed, then just "pause" the script to type to guild/friends/group.

    Edit: pause doesn't pause the script for what we are using it for. You need to use suspend like ytrehod posted below.

    Ziie
    Ziie and Xiie ( Both 34 )
    (2 Druids on Mannoroth)

  6. #66

    Default

    What I did to my AHK script was put
    [code:1]\::Suspend[/code:1]
    as the first hotkey defined after my WinGet statement. This makes my "\" key act as a toggle for my script. I use it specifically for the same thing you were talking about (alt chars jumping with every space when chatting).

  7. #67

    Default

    I have a stupid problem, but can't seem to figure out what's happening:

    2 clients, 1 pc. I've deleted the WTF dir, but when I run Scorn's script, it always seems to attach to the priest's binding heal regardless of bar position. Also I never get the "Is this your main client" box. Any ideas?

    Many thanks, this looks quite promising.

  8. #68

    Default

    did u start both WoW's before starting script?

  9. #69

    Default

    Quote Originally Posted by wolviex
    did u start both WoW's before starting script?
    Revising answer due t additional discoveries: It seems that the correct key is being called, but after binding heal is cast. Example: If I'm running and I use the key for renew, because I'm moving binding heal isn't casted but renew is.

    I'm simply trying to bind keypad numbers to specific spells, I'm fairly certain it'll work once I figure out why another spell is being cast first every time.

    Thanks for any ideas

    [code:1]
    ;
    ; Wow Duel Account Helper Version: .02a
    ; Language: English
    ; Platform: AutoHotkey Script
    ; Author: Sorn
    ; NOTES: Written for the Duel-Boxing.com forums, Send PM or post in the Autohotkey thread for assistance or suggestions
    ;
    ; Script Function:
    ; Allows you to play two copies of WOW at the same time
    ;

    ;Tell user what is about to happen
    SplashTextOn, 325, , Preparing to find your Main and Clone windows of WoW.
    Sleep, 2000
    SplasHtextoff

    ;Grab unique window ID's
    WinGet, wowid, List, World of Warcraft

    ; Minimize All WOW windows
    WinMinimize, ahk_id %wowid1%
    WinMinimize, ahk_id %wowid2%

    ;Determine Main and Clone Windows
    WinActivate, ahk_id %wowid1%

    MsgBox, 4,, Is this your WOW Main window? (press Yes or No)
    IfMsgBox Yes
    idMain = %wowid1%
    else
    idMain = %wowid2%

    If idMain = %wowid1%
    {
    idClone = %wowid2%
    } else {
    idClone = %wowid1%
    }

    ;Activate All WOW windows
    WinActivate, ahk_id %idMain%
    WinActivate, ahk_id %idClone%


    ;*** Special Functions ***

    #IfWinActive, World of Warcraft
    ; *** Makes wow2 follow Wow1 Player ***
    ^-::
    ControlSend,,{- down}{- up}, ahk_id %idClone%
    return

    #IfWinActive, World of Warcraft
    ; *** Makes wow2 Assist Wow1 Player ***
    ^=::
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    return

    ; *******************
    ; *** Numpad 0-6 ***
    ; *******************
    #IfWinActive, World of Warcraft
    ~Numpad0::
    ControlSend,,{Numpad0 down}{Numpad0 up}, ahk_id %idMain%
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{Numpad0 down}{Numpad0 up}, ahk_id %idClone%
    return

    #IfWinActive, World of Warcraft
    ~Numpad1::
    ControlSend,,{Numpad1 down}{Numpad1 up}, ahk_id %idMain%
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{Numpad1 down}{Numpad1 up}, ahk_id %idClone%
    return

    #IfWinActive, World of Warcraft
    ~Numpad2::
    ControlSend,,{Numpad2 down}{Numpad2 up}, ahk_id %idMain%
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{Numpad2 down}{Numpad2 up}, ahk_id %idClone%
    return

    #IfWinActive, World of Warcraft
    ~Numpad3::
    ControlSend,,{Numpad3 down}{Numpad3 up}, ahk_id %idMain%
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{Numpad3 down}{Numpad3 up}, ahk_id %idClone%
    return

    #IfWinActive, World of Warcraft
    ~Numpad4::
    ControlSend,,{Numpad4 down}{Numpad4 up}, ahk_id %idMain%
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{Numpad4 down}{Numpad4 up}, ahk_id %idClone%
    return

    #IfWinActive, World of Warcraft
    ~Numpad5::
    ControlSend,,{Numpad5 down}{Numpad5 up}, ahk_id %idMain%
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{Numpad5 down}{Numpad5 up}, ahk_id %idClone%
    return

    #IfWinActive, World of Warcraft
    ~Numpad6::
    ControlSend,,{Numpad6 down}{Numpad6 up}, ahk_id %idMain%
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{Numpad6 down}{Numpad6 up}, ahk_id %idClone%
    return

    [/code:1]

  10. #70

    Default

    are u using a action bar mod? i am using Bongos, and sometimes i get spells going off when i dont want, seems to be conflicting hotkey issues somewhere


    also i just tried to run 3 wow's on 1 pc and the script dont detect 3, only 2, i dont even know where to start to make it for 3 or even 5 lol

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
  •