Close
Showing results 1 to 5 of 5
  1. #1

    Default ich brauch dringend hilfe

    hi,

    ich habe mir gestern nen 2. wow acc gekauft um das multiboxing zu testen.

    ich hab mich auch schon durch die foren gelesen aber irgenwie kapier ich manche sachen nicht so ganz.

    ich hab mir Autohotkey schon runterladen und install gemacht. hab ein skript erstellt und

    [code:1]WinGet, wowid, List, World of Warcraft [/code:1]
    code:1]~0::
    KeyWait, 0, D
    #IfWinActive, World of Warcraft
    {
    ControlSend,, 0, ahk_id %wowid1%
    ControlSend,, 0, ahk_id %wowid2%
    }
    Return [/code:1]
    [code:1]~1::
    KeyWait, 1, D
    #IfWinActive, World of Warcraft
    {
    ControlSend,, 1, ahk_id %wowid1%
    ControlSend,, 1, ahk_id %wowid2%
    }
    Return [/code:1]
    [code:1]~F::
    #IfWinActive, World of Warcraft
    KeyWait, F, D
    {
    ControlSend,, F, ahk_id %wowid1%
    ControlSend,, F, ahk_id %wowid2%
    }
    Return [/code:1]
    [code:1]~E::
    KeyWait, E, D
    #IfWinActive, World of Warcraft
    {
    ControlSend,, E, ahk_id %wowid1%
    ControlSend,, E, ahk_id %wowid2%
    }
    Return [/code:1]



    das schon mal reingeschrieben.

    ich habe auch schon 2 wow ordner gemacht einer mit dem namen wow1 und der andere wow2

    aber ka wie ich z.b. mache das das skript nebenbei läuft und es auch funktioniert.

    muss ich für alle buschstaben und alle nummern so nen kl. text einbauen oder gibts schon ne datei komplett für ein 2er duall zum download wo funktioniert?

    mfg

    taka

  2. #2

    Default

    • AHK starten
    • Rechtsklick auf das AHK Taskbar Icon (in der Windows-Taskleiste (bei der Uhr, rechts unten))
    • Edit Script auswählen
    Dann folgendes dort reinschreiben (alles vorhandene überschreiben!)
    (ACHTUNG: Nach dem Quellcode geht mein Post weiter!)

    Code:
     ; 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 
     
     ; ******************* 
     ; *** Hotbars 1-0 *** 
     ; ******************* 
     #IfWinActive, World of Warcraft 
        ~1:: 
        ControlSend,,{1 down}{1 up},  ahk_id %idMain% 
        ControlSend,,{= down}{= up},  ahk_id %idClone% 
        ControlSend,,{1 down}{1 up},  ahk_id %idClone% 
     return 
     
     #IfWinActive, World of Warcraft 
        ~2:: 
        ControlSend,,{2 down}{2 up},  ahk_id %idMain% 
        ControlSend,,{= down}{= up},  ahk_id %idClone% 
        ControlSend,,{2 down}{2 up},  ahk_id %idClone% 
     return 
     
     #IfWinActive, World of Warcraft 
        ~3:: 
        ControlSend,,{3 down}{3 up},  ahk_id %idMain% 
        ControlSend,,{= down}{= up},  ahk_id %idClone% 
        ControlSend,,{3 down}{3 up},  ahk_id %idClone% 
     return 
     
     #IfWinActive, World of Warcraft 
        ~4:: 
        ControlSend,,{4 down}{4 up},  ahk_id %idMain% 
        ControlSend,,{= down}{= up},  ahk_id %idClone% 
        ControlSend,,{4 down}{4 up},  ahk_id %idClone% 
     return 
     
     #IfWinActive, World of Warcraft 
        ~5:: 
        ControlSend,,{5 down}{5 up},  ahk_id %idMain% 
        ControlSend,,{= down}{= up},  ahk_id %idClone% 
        ControlSend,,{5 down}{5 up},  ahk_id %idClone% 
     return 
     
     #IfWinActive, World of Warcraft 
        ~6:: 
        ControlSend,,{6 down}{6 up},  ahk_id %idMain% 
        ControlSend,,{= down}{= up},  ahk_id %idClone% 
        ControlSend,,{6 down}{6 up},  ahk_id %idClone% 
     return 
     
     #IfWinActive, World of Warcraft 
        ~7:: 
        ControlSend,,{7 down}{7 up},  ahk_id %idMain% 
        ControlSend,,{= down}{= up},  ahk_id %idClone% 
        ControlSend,,{7 down}{7 up},  ahk_id %idClone% 
     return 
     
     #IfWinActive, World of Warcraft 
        ~8:: 
        ControlSend,,{8 down}{8 up},  ahk_id %idMain% 
        ControlSend,,{= down}{= up},  ahk_id %idClone% 
        ControlSend,,{8 down}{8 up},  ahk_id %idClone% 
     return 
     
     #IfWinActive, World of Warcraft 
        ~9:: 
        ControlSend,,{9 down}{9 up},  ahk_id %idMain% 
        ControlSend,,{= down}{= up},  ahk_id %idClone% 
        ControlSend,,{9 down}{9 up},  ahk_id %idClone% 
     return 
     
     #IfWinActive, World of Warcraft 
        ~0:: 
        ControlSend,,{0 down}{0 up},  ahk_id %idMain% 
        ControlSend,,{= down}{= up},  ahk_id %idClone% 
        ControlSend,,{0 down}{0 up},  ahk_id %idClone% 
     return 
     
     
     
     ; *************************** 
     ; *** Hotbars Shift ^ 1-0 *** 
     ; *************************** 
     #IfWinActive, World of Warcraft 
        ~+1:: 
        ControlSend,,{Shift down}{1 down}{1 up}{Shift up},  ahk_id %idMain% 
        ControlSend,,{= down}{= up},  ahk_id %idClone% 
        ControlSend,,{Shift down}{1 down}{1 up}{Shift up},  ahk_id %idClone% 
     return 
     
     #IfWinActive, World of Warcraft 
        ~+2:: 
        ControlSend,,{Shift down}{2 down}{2 up}{Shift up},  ahk_id %idMain% 
        ControlSend,,{= down}{= up},  ahk_id %idClone% 
        ControlSend,,{Shift down}{2 down}{2 up}{Shift up},  ahk_id %idClone% 
     return 
     
     #IfWinActive, World of Warcraft 
        ~+3:: 
        ControlSend,,{Shift down}{3 down}{3 up}{Shift up},  ahk_id %idMain% 
        ControlSend,,{= down}{= up},  ahk_id %idClone% 
        ControlSend,,{Shift down}{3 down}{3 up}{Shift up},  ahk_id %idClone% 
     return 
     
     #IfWinActive, World of Warcraft 
        ~+4:: 
        ControlSend,,{Shift down}{4 down}{4 up}{Shift up},  ahk_id %idMain% 
        ControlSend,,{= down}{= up},  ahk_id %idClone% 
        ControlSend,,{Shift down}{4 down}{4 up}{Shift up},  ahk_id %idClone% 
     return 
     
     #IfWinActive, World of Warcraft 
        ~+5:: 
        ControlSend,,{Shift down}{5 down}{5 up}{Shift up},  ahk_id %idMain% 
        ControlSend,,{= down}{= up},  ahk_id %idClone% 
        ControlSend,,{Shift down}{5 down}{5 up}{Shift up},  ahk_id %idClone% 
     return 
     
     #IfWinActive, World of Warcraft 
        ~+6:: 
        ControlSend,,{Shift down}{6 down}{6 up}{Shift up},  ahk_id %idMain% 
        ControlSend,,{= down}{= up},  ahk_id %idClone% 
        ControlSend,,{Shift down}{6 down}{6 up}{Shift up},  ahk_id %idClone% 
     return 
     
     #IfWinActive, World of Warcraft 
        ~+7:: 
        ControlSend,,{Shift down}{7 down}{7 up}{Shift up},  ahk_id %idMain% 
        ControlSend,,{= down}{= up},  ahk_id %idClone% 
        ControlSend,,{Shift down}{7 down}{7 up}{Shift up},  ahk_id %idClone% 
     return 
     
     #IfWinActive, World of Warcraft 
        ~+8:: 
        ControlSend,,{Shift down}{8 down}{8 up}{Shift up},  ahk_id %idMain% 
        ControlSend,,{= down}{= up},  ahk_id %idClone% 
        ControlSend,,{Shift down}{8 down}{8 up}{Shift up},  ahk_id %idClone% 
     return 
     
     #IfWinActive, World of Warcraft 
        ~+9:: 
        ControlSend,,{Shift down}{9 down}{9 up}{Shift up},  ahk_id %idMain% 
        ControlSend,,{= down}{= up},  ahk_id %idClone% 
        ControlSend,,{Shift down}{9 down}{9 up}{Shift up},  ahk_id %idClone% 
     return 
     
     #IfWinActive, World of Warcraft 
        ~+0:: 
        ControlSend,,{Shift down}{0 down}{0 up}{Shift up},  ahk_id %idMain% 
        ControlSend,,{= down}{= up},  ahk_id %idClone% 
        ControlSend,,{Shift down}{0 down}{0 up}{Shift up},  ahk_id %idClone% 
     return 
     
     ; ************************** 
     ; *** Hotbars Cntl ^ 1-0 *** 
     ; ************************** 
     #IfWinActive, World of Warcraft 
        ~^1:: 
        ControlSend,,{Ctrl down}{1 down}{1 up}{Ctrl up},  ahk_id %idMain% 
        ControlSend,,{= down}{= up},  ahk_id %idClone% 
        ControlSend,,{Ctrl down}{1 down}{1 up}{Ctrl up},  ahk_id %idClone% 
     return 
     
     #IfWinActive, World of Warcraft 
        ~^2:: 
        ControlSend,,{Ctrl down}{2 down}{2 up}{Ctrl up},  ahk_id %idMain% 
        ControlSend,,{= down}{= up},  ahk_id %idClone% 
        ControlSend,,{Ctrl down}{2 down}{2 up}{Ctrl up},  ahk_id %idClone% 
     return 
     
     #IfWinActive, World of Warcraft 
        ~^3:: 
        ControlSend,,{Ctrl down}{3 down}{3 up}{Ctrl up},  ahk_id %idMain% 
        ControlSend,,{= down}{= up},  ahk_id %idClone% 
        ControlSend,,{Ctrl down}{3 down}{3 up}{Ctrl up},  ahk_id %idClone% 
     return 
     
     #IfWinActive, World of Warcraft 
        ~^4:: 
        ControlSend,,{Ctrl down}{4 down}{4 up}{Ctrl up},  ahk_id %idMain% 
        ControlSend,,{= down}{= up},  ahk_id %idClone% 
        ControlSend,,{Ctrl down}{4 down}{4 up}{Ctrl up},  ahk_id %idClone% 
     return 
     
     #IfWinActive, World of Warcraft 
        ~^5:: 
        ControlSend,,{Ctrl down}{5 down}{5 up}{Ctrl up},  ahk_id %idMain% 
        ControlSend,,{= down}{= up},  ahk_id %idClone% 
        ControlSend,,{Ctrl down}{5 down}{5 up}{Ctrl up},  ahk_id %idClone% 
     return 
     
     #IfWinActive, World of Warcraft 
        ~^6:: 
        ControlSend,,{Ctrl down}{6 down}{6 up}{Ctrl up},  ahk_id %idMain% 
        ControlSend,,{= down}{= up},  ahk_id %idClone% 
        ControlSend,,{Ctrl down}{6 down}{6 up}{Ctrl up},  ahk_id %idClone% 
     return 
     
     #IfWinActive, World of Warcraft 
        ~^7:: 
        ControlSend,,{Ctrl down}{7 down}{7 up}{Ctrl up},  ahk_id %idMain% 
        ControlSend,,{= down}{= up},  ahk_id %idClone% 
        ControlSend,,{Ctrl down}{7 down}{7 up}{Ctrl up},  ahk_id %idClone% 
     return 
     
     #IfWinActive, World of Warcraft 
        ~^8:: 
        ControlSend,,{Ctrl down}{8 down}{8 up}{Ctrl up},  ahk_id %idMain% 
        ControlSend,,{= down}{= up},  ahk_id %idClone% 
        ControlSend,,{Ctrl down}{8 down}{8 up}{Ctrl up},  ahk_id %idClone% 
     return 
     
     #IfWinActive, World of Warcraft 
        ~^9:: 
        ControlSend,,{Ctrl down}{9 down}{9 up}{Ctrl up},  ahk_id %idMain% 
        ControlSend,,{= down}{= up},  ahk_id %idClone% 
        ControlSend,,{Ctrl down}{9 down}{9 up}{Ctrl up},  ahk_id %idClone% 
     return 
     
     #IfWinActive, World of Warcraft 
        ~^0:: 
        ControlSend,,{Ctrl down}{0 down}{0 up}{Ctrl up},  ahk_id %idMain% 
        ControlSend,,{= down}{= up},  ahk_id %idClone% 
        ControlSend,,{Ctrl down}{0 down}{0 up}{Ctrl up},  ahk_id %idClone% 
     return
    • Speichern.
    • Deine WoWs starten.
    • Rechtsklick auf das Icon in der Taskbar, Reload Script.
    Das Script von oben sendet alle Zahlen, sowohl normal als auch mit Shift oder Ctrl (Strg) gedrückt an Deine WoWs. Auch ein paar der anderen Tasten. Versuch es zu lesen und zu verstehen. Es wiederholt sich immer wieder, bei jeder Taste. Wenn Du eine eigene taste zur Übertragung willst, musst Du nur mit Copy&Paste einen Eintrag vervielfältigen und "umbauen".

    Für "Spezialtasten" gibt es wahrscheinlich noch eigene Codes. Man kann da ja nicht einfach reinschreiben ESCAPE, wenn man die Escape-Taste übertragen will. Dazu gibt es aber sicher einen Thread, in dem die Spezialcodes beschrieben sind. Eventuell hat AHK auch eine Hilfe, ich habe eben gerade keine Lust danach zu suchen

  3. #3

    Default

    Quote Originally Posted by 'Tinpah',index.php?page=Thread&postID=74171#post74 171
    • AHK starten
    • Rechtsklick auf das AHK Taskbar Icon (in der Windows-Taskleiste (bei der Uhr, rechts unten))
    • Edit Script auswählen
    Dann folgendes dort reinschreiben (alles vorhandene überschreiben!)
    (ACHTUNG: Nach dem Quellcode geht mein Post weiter!)

    Code:
     
    ; 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 
    
    ; ******************* 
    ; *** Hotbars 1-0 *** 
    ; ******************* 
    #IfWinActive, World of Warcraft 
    ~1:: 
    ControlSend,,{1 down}{1 up}, ahk_id %idMain% 
    ControlSend,,{= down}{= up}, ahk_id %idClone% 
    ControlSend,,{1 down}{1 up}, ahk_id %idClone% 
    return 
    
    #IfWinActive, World of Warcraft 
    ~2:: 
    ControlSend,,{2 down}{2 up}, ahk_id %idMain% 
    ControlSend,,{= down}{= up}, ahk_id %idClone% 
    ControlSend,,{2 down}{2 up}, ahk_id %idClone% 
    return 
    
    #IfWinActive, World of Warcraft 
    ~3:: 
    ControlSend,,{3 down}{3 up}, ahk_id %idMain% 
    ControlSend,,{= down}{= up}, ahk_id %idClone% 
    ControlSend,,{3 down}{3 up}, ahk_id %idClone% 
    return 
    
    #IfWinActive, World of Warcraft 
    ~4:: 
    ControlSend,,{4 down}{4 up}, ahk_id %idMain% 
    ControlSend,,{= down}{= up}, ahk_id %idClone% 
    ControlSend,,{4 down}{4 up}, ahk_id %idClone% 
    return 
    
    #IfWinActive, World of Warcraft 
    ~5:: 
    ControlSend,,{5 down}{5 up}, ahk_id %idMain% 
    ControlSend,,{= down}{= up}, ahk_id %idClone% 
    ControlSend,,{5 down}{5 up}, ahk_id %idClone% 
    return 
    
    #IfWinActive, World of Warcraft 
    ~6:: 
    ControlSend,,{6 down}{6 up}, ahk_id %idMain% 
    ControlSend,,{= down}{= up}, ahk_id %idClone% 
    ControlSend,,{6 down}{6 up}, ahk_id %idClone% 
    return 
    
    #IfWinActive, World of Warcraft 
    ~7:: 
    ControlSend,,{7 down}{7 up}, ahk_id %idMain% 
    ControlSend,,{= down}{= up}, ahk_id %idClone% 
    ControlSend,,{7 down}{7 up}, ahk_id %idClone% 
    return 
    
    #IfWinActive, World of Warcraft 
    ~8:: 
    ControlSend,,{8 down}{8 up}, ahk_id %idMain% 
    ControlSend,,{= down}{= up}, ahk_id %idClone% 
    ControlSend,,{8 down}{8 up}, ahk_id %idClone% 
    return 
    
    #IfWinActive, World of Warcraft 
    ~9:: 
    ControlSend,,{9 down}{9 up}, ahk_id %idMain% 
    ControlSend,,{= down}{= up}, ahk_id %idClone% 
    ControlSend,,{9 down}{9 up}, ahk_id %idClone% 
    return 
    
    #IfWinActive, World of Warcraft 
    ~0:: 
    ControlSend,,{0 down}{0 up}, ahk_id %idMain% 
    ControlSend,,{= down}{= up}, ahk_id %idClone% 
    ControlSend,,{0 down}{0 up}, ahk_id %idClone% 
    return 
    
    
    
    ; *************************** 
    ; *** Hotbars Shift ^ 1-0 *** 
    ; *************************** 
    #IfWinActive, World of Warcraft 
    ~+1:: 
    ControlSend,,{Shift down}{1 down}{1 up}{Shift up}, ahk_id %idMain% 
    ControlSend,,{= down}{= up}, ahk_id %idClone% 
    ControlSend,,{Shift down}{1 down}{1 up}{Shift up}, ahk_id %idClone% 
    return 
    
    #IfWinActive, World of Warcraft 
    ~+2:: 
    ControlSend,,{Shift down}{2 down}{2 up}{Shift up}, ahk_id %idMain% 
    ControlSend,,{= down}{= up}, ahk_id %idClone% 
    ControlSend,,{Shift down}{2 down}{2 up}{Shift up}, ahk_id %idClone% 
    return 
    
    #IfWinActive, World of Warcraft 
    ~+3:: 
    ControlSend,,{Shift down}{3 down}{3 up}{Shift up}, ahk_id %idMain% 
    ControlSend,,{= down}{= up}, ahk_id %idClone% 
    ControlSend,,{Shift down}{3 down}{3 up}{Shift up}, ahk_id %idClone% 
    return 
    
    #IfWinActive, World of Warcraft 
    ~+4:: 
    ControlSend,,{Shift down}{4 down}{4 up}{Shift up}, ahk_id %idMain% 
    ControlSend,,{= down}{= up}, ahk_id %idClone% 
    ControlSend,,{Shift down}{4 down}{4 up}{Shift up}, ahk_id %idClone% 
    return 
    
    #IfWinActive, World of Warcraft 
    ~+5:: 
    ControlSend,,{Shift down}{5 down}{5 up}{Shift up}, ahk_id %idMain% 
    ControlSend,,{= down}{= up}, ahk_id %idClone% 
    ControlSend,,{Shift down}{5 down}{5 up}{Shift up}, ahk_id %idClone% 
    return 
    
    #IfWinActive, World of Warcraft 
    ~+6:: 
    ControlSend,,{Shift down}{6 down}{6 up}{Shift up}, ahk_id %idMain% 
    ControlSend,,{= down}{= up}, ahk_id %idClone% 
    ControlSend,,{Shift down}{6 down}{6 up}{Shift up}, ahk_id %idClone% 
    return 
    
    #IfWinActive, World of Warcraft 
    ~+7:: 
    ControlSend,,{Shift down}{7 down}{7 up}{Shift up}, ahk_id %idMain% 
    ControlSend,,{= down}{= up}, ahk_id %idClone% 
    ControlSend,,{Shift down}{7 down}{7 up}{Shift up}, ahk_id %idClone% 
    return 
    
    #IfWinActive, World of Warcraft 
    ~+8:: 
    ControlSend,,{Shift down}{8 down}{8 up}{Shift up}, ahk_id %idMain% 
    ControlSend,,{= down}{= up}, ahk_id %idClone% 
    ControlSend,,{Shift down}{8 down}{8 up}{Shift up}, ahk_id %idClone% 
    return 
    
    #IfWinActive, World of Warcraft 
    ~+9:: 
    ControlSend,,{Shift down}{9 down}{9 up}{Shift up}, ahk_id %idMain% 
    ControlSend,,{= down}{= up}, ahk_id %idClone% 
    ControlSend,,{Shift down}{9 down}{9 up}{Shift up}, ahk_id %idClone% 
    return 
    
    #IfWinActive, World of Warcraft 
    ~+0:: 
    ControlSend,,{Shift down}{0 down}{0 up}{Shift up}, ahk_id %idMain% 
    ControlSend,,{= down}{= up}, ahk_id %idClone% 
    ControlSend,,{Shift down}{0 down}{0 up}{Shift up}, ahk_id %idClone% 
    return 
    
    ; ************************** 
    ; *** Hotbars Cntl ^ 1-0 *** 
    ; ************************** 
    #IfWinActive, World of Warcraft 
    ~^1:: 
    ControlSend,,{Ctrl down}{1 down}{1 up}{Ctrl up}, ahk_id %idMain% 
    ControlSend,,{= down}{= up}, ahk_id %idClone% 
    ControlSend,,{Ctrl down}{1 down}{1 up}{Ctrl up}, ahk_id %idClone% 
    return 
    
    #IfWinActive, World of Warcraft 
    ~^2:: 
    ControlSend,,{Ctrl down}{2 down}{2 up}{Ctrl up}, ahk_id %idMain% 
    ControlSend,,{= down}{= up}, ahk_id %idClone% 
    ControlSend,,{Ctrl down}{2 down}{2 up}{Ctrl up}, ahk_id %idClone% 
    return 
    
    #IfWinActive, World of Warcraft 
    ~^3:: 
    ControlSend,,{Ctrl down}{3 down}{3 up}{Ctrl up}, ahk_id %idMain% 
    ControlSend,,{= down}{= up}, ahk_id %idClone% 
    ControlSend,,{Ctrl down}{3 down}{3 up}{Ctrl up}, ahk_id %idClone% 
    return 
    
    #IfWinActive, World of Warcraft 
    ~^4:: 
    ControlSend,,{Ctrl down}{4 down}{4 up}{Ctrl up}, ahk_id %idMain% 
    ControlSend,,{= down}{= up}, ahk_id %idClone% 
    ControlSend,,{Ctrl down}{4 down}{4 up}{Ctrl up}, ahk_id %idClone% 
    return 
    
    #IfWinActive, World of Warcraft 
    ~^5:: 
    ControlSend,,{Ctrl down}{5 down}{5 up}{Ctrl up}, ahk_id %idMain% 
    ControlSend,,{= down}{= up}, ahk_id %idClone% 
    ControlSend,,{Ctrl down}{5 down}{5 up}{Ctrl up}, ahk_id %idClone% 
    return 
    
    #IfWinActive, World of Warcraft 
    ~^6:: 
    ControlSend,,{Ctrl down}{6 down}{6 up}{Ctrl up}, ahk_id %idMain% 
    ControlSend,,{= down}{= up}, ahk_id %idClone% 
    ControlSend,,{Ctrl down}{6 down}{6 up}{Ctrl up}, ahk_id %idClone% 
    return 
    
    #IfWinActive, World of Warcraft 
    ~^7:: 
    ControlSend,,{Ctrl down}{7 down}{7 up}{Ctrl up}, ahk_id %idMain% 
    ControlSend,,{= down}{= up}, ahk_id %idClone% 
    ControlSend,,{Ctrl down}{7 down}{7 up}{Ctrl up}, ahk_id %idClone% 
    return 
    
    #IfWinActive, World of Warcraft 
    ~^8:: 
    ControlSend,,{Ctrl down}{8 down}{8 up}{Ctrl up}, ahk_id %idMain% 
    ControlSend,,{= down}{= up}, ahk_id %idClone% 
    ControlSend,,{Ctrl down}{8 down}{8 up}{Ctrl up}, ahk_id %idClone% 
    return 
    
    #IfWinActive, World of Warcraft 
    ~^9:: 
    ControlSend,,{Ctrl down}{9 down}{9 up}{Ctrl up}, ahk_id %idMain% 
    ControlSend,,{= down}{= up}, ahk_id %idClone% 
    ControlSend,,{Ctrl down}{9 down}{9 up}{Ctrl up}, ahk_id %idClone% 
    return 
    
    #IfWinActive, World of Warcraft 
    ~^0:: 
    ControlSend,,{Ctrl down}{0 down}{0 up}{Ctrl up}, ahk_id %idMain% 
    ControlSend,,{= down}{= up}, ahk_id %idClone% 
    ControlSend,,{Ctrl down}{0 down}{0 up}{Ctrl up}, ahk_id %idClone% 
    return
    • Speichern.
    • Deine WoWs starten.
    • Rechtsklick auf das Icon in der Taskbar, Reload Script.
    Das Script von oben sendet alle Zahlen, sowohl normal als auch mit Shift oder Ctrl (Strg) gedrückt an Deine WoWs. Auch ein paar der anderen Tasten. Versuch es zu lesen und zu verstehen. Es wiederholt sich immer wieder, bei jeder Taste. Wenn Du eine eigene taste zur Übertragung willst, musst Du nur mit Copy&Paste einen Eintrag vervielfältigen und "umbauen".

    Für "Spezialtasten" gibt es wahrscheinlich noch eigene Codes. Man kann da ja nicht einfach reinschreiben ESCAPE, wenn man die Escape-Taste übertragen will. Dazu gibt es aber sicher einen Thread, in dem die Spezialcodes beschrieben sind. Eventuell hat AHK auch eine Hilfe, ich habe eben gerade keine Lust danach zu suchen




    also ich hab das komplett so geamcht wie du das geklinkt hast

    nur das prob is ich muss doch auf folgen von dem maincha machen das mir der ander folgt.

    wenn ich das aber mache hat der 2. cha immer nur den den er folgt im target und nicht das zieh das ich mit dem 1. cha anvisiere. wie kann ich das ändern? das 1. mir der 2. char trotzdem folgt, aber auf das traget vom 1. cha tortzdem dmg macht?

    mfg

    taka

  4. #4

    Default

    Also ich hab mir vor fast jeden Spell folgendes Makro gemacht:

    /target main
    /assist
    /cast spell

    soll aber nicht die Beste Lösung sein aber bei mir klappts super bis der Main stirbt
    3x lvl 70 undead female mage eredar (eu)

    3x lvl 60 orc shaman eredar (eu)

  5. #5

    Default

    ich hab 2 makros die ich immer anklick
    /assist name
    und
    /folge name

    dann kann ich z.B. einen gegner anklicken das /assist makro klichen und dann 1 klicken für blitzschlag und mit dem main kann ich dan jemand anders anklicken und heilen werend die anderen immer noch weiter dmg machen

Similar Threads

  1. Replies: 3
    Last Post: 01-21-2009, 04:40 AM
  2. Hilfe
    By underkeeper in forum German
    Replies: 4
    Last Post: 10-26-2008, 07:08 PM
  3. Neuling brauch Hilfe
    By Marok in forum German
    Replies: 1
    Last Post: 08-16-2008, 12:33 PM
  4. Bg anmelden wie? brauch hilfe
    By Fate in forum German
    Replies: 10
    Last Post: 07-13-2008, 08:44 AM
  5. HILFE
    By maikilord in forum General WoW Discussion
    Replies: 3
    Last Post: 05-26-2008, 11:49 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
  •