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

    Default error messages when launching

    ok, so first off i am fresh nooblet when it comes to coding of any sort, well that aside while following the tuts on getting started i ran across some issues that i cannot figure out. I pretty much copy and pasted the HKN_Guide_Sample_script and am receiving error messages via HKN.

    the error i am getting is

    From this pc: <Run "k:\World of Warcraft\WoW.exe"><RenameTargetWin WoW1><RemoveWinFrame><Run "k:\World of Warcraft\WoW.exe"> completed: Program started.. Window could not be found
    <RenameTargetWin WoW1> failed: No window is targeted.
    <RemoveWinFrame> failed: No window is targeted.

    seems that my game is launching too slowly for the command to be received by the window? this is the script

    Code:.....im so bad.... dont know how to add rhe box with the code following

    Code:
    //-----------------------------------------------------------
    // DEFINE MAIL LABELS FOR SENDING KEY STROKES.
    //-----------------------------------------------------------
    <Label w1 Local SendWinM WoW1>
    <Label w2 Local SendWinM WoW2>
    <Label w3 Local SendWinM WoW3>
    <Label w4 Local SendWinM WoW4>
    <Label w5 Local SendWinM WoW5>
    
    //-----------------------------------------------------------
    // DEFINE HOTKEYS FOR ALL KEY COMBINATIONS THAT WILL GET
    // SENT TO ALL WOWS. ADD MORE KEY COMBO'S IF YOU WANT.
    //-----------------------------------------------------------
    <KeyList MyList A-Z, 0-9, Enter, Tab, Oem4, Space, Comma, Oem6 except W, A, S, D, Q, E, L>
    
    <Hotkey MyList; Shift MyList; Alt MyList; Ctrl MyList>
      	 <SendLabel w1, w2, w3, w4, w5>
       	<Key %Trigger%>
    
    <MovementHotkey up, down, left, right>
           	<SendLabel w1, w2, w3, w4, w5>
            	<Key %Trigger%>
    
    <hotkey pause>
    	<sendpc local>
    	<ToggleHotkeys>
    
    ///-----------------------------------------------------------
    // BROADCAST MOUSE CLICKS. HOLD DOWN OEM3 (ON U.S. KEYBOARDS,
    // THAT'S THE SQUIGGLE KEY IN UPPPER LEFT CORNER) WHEN YOU
    // WANT TO BROADCAST.
    //-----------------------------------------------------------
    <UseKeyAsModifier Oem3>
    
    <Hotkey Oem3 LButton, MButton, RButton>  
       <SendLabel w1, w2, w3, w4, w5>
           <ClickMouse %TriggerMainKey%>
           	
    //-----------------------------------------------------------
    // SUBROUTINE TO LAUNCH AND RENAME A COPY OF WOW.
    //-----------------------------------------------------------
    <Command LaunchAndRename>
       <SendPC %1%>
          <Run %2%>
          <RenameTargetWin %3%>
          <RemoveWinFrame>
    
    //-----------------------------------------------------------
    // SUBROUTINE TO Position Windows for 5 boxing.
    // You need to configure the positions as you like
    //-----------------------------------------------------------
    <Command ResizeAndPosition>
       <SendPC Local>
          <SendWinM %1%>
                   <SetWinRect 0 0 1280 1024>              
          <SendWinM %2%>
                 <SetWinRect 1280 0 640 512>  
            <SendWinM %3%>
                <SetWinRect 1280 512 640 512>     
            <SendWinM %4%>
                <SetWinRect 1920 0 640 512>     
             <SendWinM %5%>
                 <SetWinRect 1920 512 640 512>
    
    //-----------------------------------------------------------
    // HOTKEY TO LAUNCH AND RENAME YOUR WOW WINDOWS while 5 boxing
    // Please configure the path correctly
    //-----------------------------------------------------------
    <Hotkey Alt Ctrl L>
    <LaunchAndRename Local "k:\World of Warcraft\WoW.exe" WoW1>
    <LaunchAndRename Local "k:\World of Warcraft\WoW.exe" WoW2>
    <LaunchAndRename Local "k:\World of Warcraft\WoW.exe" WoW3>
    <LaunchAndRename Local "k:\World of Warcraft\WoW.exe" WoW4>
    <LaunchAndRename Local "k:\World of Warcraft\WoW.exe" WoW5>
    <ResizeAndPosition WoW1 WoW2 WoW3 WoW4 WoW5>
    
    //----------------------------------------------------------------
    //Window Switching
    //----------------------------------------------------------------
    <Hotkey F1>
       <ResizeAndPosition WoW1 WoW2 WoW3 WoW4 WoW5>
    <Hotkey F2>
       <ResizeAndPosition WoW2 WoW1 WoW3 WoW4 WoW5>
    <Hotkey F3>
       <ResizeAndPosition WoW3 WoW2 WoW1 WoW4 WoW5>
    <Hotkey F4>
       <ResizeAndPosition WoW4 WoW2 WoW3 WoW1 WoW5>
    <Hotkey F5>
       <ResizeAndPosition WoW5 WoW2 WoW3 WoW4 WoW1>
    and this is the error messages received

    Code:
    Loading script C:\Users\Fresh\Desktop\HKN_Guide_Sample_Script.txt.
    
    Finished loading hotkey file.
    	No errors were found
    	160 definitions were loaded
    	1 key will be used as a modifier
    
    Command line: AutoExec
    	Unable to find command AutoExec
    
    Installing mouse hook
    	Hook installation succeeded
    
    From this pc: <ToggleHotkeys>
    <ToggleHotkeys> completed
    
    From this pc: <ToggleHotkeys>
    <ToggleHotkeys> completed
    
    From this pc: <LaunchAndRename Local "k:\World of Warcraft\WoW.exe" WoW1><LaunchAndRename Local "k:\World of Warcraft\WoW.exe" WoW2><LaunchAndRename Local "k:\World of Warcraft\WoW.exe" WoW3><LaunchAndRename Local "k:\World of Warcraft\WoW.exe" WoW4><LaunchAndRename Local "k:\World of Warcraft\WoW.exe" WoW5><ResizeAndPosition WoW1 WoW2 WoW3 WoW4 WoW5>
    
    From this pc: <Run "k:\World of Warcraft\WoW.exe"><RenameTargetWin WoW1><RemoveWinFrame>
    <Run "k:\World of Warcraft\WoW.exe"> completed: Program started.. Window could not be found
    <RenameTargetWin WoW1> failed: No window is targeted.
    <RemoveWinFrame> failed: No window is targeted.
    
    From this pc: <Run "k:\World of Warcraft\WoW.exe"><RenameTargetWin WoW2><RemoveWinFrame>
    <Run "k:\World of Warcraft\WoW.exe"> completed: Program started.. Window could not be found
    <RenameTargetWin WoW2> failed: No window is targeted.
    <RemoveWinFrame> failed: No window is targeted.
    
    From this pc: <Run "k:\World of Warcraft\WoW.exe"><RenameTargetWin WoW3><RemoveWinFrame>
    <Run "k:\World of Warcraft\WoW.exe"> completed: Program started.. Window could not be found
    <RenameTargetWin WoW3> failed: No window is targeted.
    <RemoveWinFrame> failed: No window is targeted.
    
    From this pc: <Run "k:\World of Warcraft\WoW.exe"><RenameTargetWin WoW4><RemoveWinFrame>
    <Run "k:\World of Warcraft\WoW.exe"> completed: Program started.. Window could not be found
    <RenameTargetWin WoW4> failed: No window is targeted.
    <RemoveWinFrame> failed: No window is targeted.
    
    From this pc: <Run "k:\World of Warcraft\WoW.exe"><RenameTargetWin WoW5><RemoveWinFrame>
    <Run "k:\World of Warcraft\WoW.exe"> completed: Program started.. Window could not be found
    <RenameTargetWin WoW5> failed: No window is targeted.
    <RemoveWinFrame> failed: No window is targeted.
    
    From this pc: <SendWinM WoW1><SetWinRect 0 0 1280 1024><SendWinM WoW2><SetWinRect 1280 0 640 512><SendWinM WoW3><SetWinRect 1280 512 640 512><SendWinM WoW4><SetWinRect 1920 0 640 512><SendWinM WoW5><SetWinRect 1920 512 640 512>
    <SendWinM WoW1> failed: Could not find window "WoW1"
    <SetWinRect 0 0 1280 1024> failed: No window is targeted.
    <SendWinM WoW2> failed: Could not find window "WoW2"
    <SetWinRect 1280 0 640 512> failed: No window is targeted.
    <SendWinM WoW3> failed: Could not find window "WoW3"
    <SetWinRect 1280 512 640 512> failed: No window is targeted.
    <SendWinM WoW4> failed: Could not find window "WoW4"
    <SetWinRect 1920 0 640 512> failed: No window is targeted.
    <SendWinM WoW5> failed: Could not find window "WoW5"
    <SetWinRect 1920 512 640 512> failed: No window is targeted.
    
    From this pc: <ToggleHotkeys>
    <ToggleHotkeys> completed
    i have yet to fiddle with the positioning of the screens via my own co-ordinates cause im nowhere near that point yet in understanding what is happening here.

    my goal is to launch 5xwow on one account
    wow1,wow3,wow4,wow5,wow6 on the same bnet
    have the windows renamed and resized windowless then account info input as well as the passowrds then have a 20 second pause or so so i can add my authentication code.

    not sure if this is proper structure but im still learning .

    thanks in advance to anyone willing to lend this old fart a helping hand.
    Attached Files Attached Files
    Last edited by Khatovar : 05-29-2015 at 05:22 PM

  2. #2

    Default

    To put the text in it's own box, use the [ code][ /code] around the text {remove the spaces}.

    As far as the script, use the Starter Script Tutorial, which describes what everything in the basic copy/paste script does and then proceeds to walk you though how to fix it, including this launch conflict {halfway down the page, under Refining Your Script.}


    http://www.dual-boxing.com/threads/4...een-resolution
    http://www.dual-boxing.com/threads/4...toLogin-script

    As far as the slow launch, you probably need to use Wow-64.exe instead of wow.exe.
    http://www.dual-boxing.com/threads/4...test-WoW-patch
    Blog : Herding Khats
    Team : Kina - Çroaker - Messkit - Lìfetaker - Wìdowmaker
    Newbie Guides : Multiboxing Vol. 1 - Multiboxing Vol. 2 - HotKeyNet - Jamba
    The Almighty Lax made a liar out of me, apparently I DO get prizes for it.
    *Commences Wielding the Banhammer like there's piñatas up in here and I'm Lady Thor*

    _ Forum search letting you down? Use the custom Google search _

Tags for this Thread

Posting Rules

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