First of all
Hi !

This is my first post in this forum, after reading mostly the newbie starting guide about dual/multi - boxing i decided to use HotKeyNet (HKN) for my software solution.
While reading some of the post and looking up on Google, i cant seem to find a definite guide on how to make an auto-login script using HotKeyNet (HKN), thats why i post this small script i made.
Please bear with me as im a totally new on this whole dual/multi - boxing on WoW.
Im using the basic 4 wow on 1 pc script and made some changes.
so im going to keep some of the 'title' inside the script the same as the original, to avoid confusion

Code:
//-----------------------------------------------------------
// HOTKEY TO LAUNCH AND RENAME YOUR WOW WINDOWS
//-----------------------------------------------------------
<Hotkey ScrollLockOn Alt Ctrl L>
    <LaunchAndRename Local WoW1>
    <LaunchAndRename Local WoW2>
    <LaunchAndRename Local WoW3>
    <LaunchAndRename Local WoW4>
What i did is, i add a couple lines to the above code :

Code:
<Hotkey ScrollLockOn Alt Ctrl L>
    <LaunchAndRename Local WoW1>
    <wait 1000>
    <text YourAccountName1>
    <wait 500>
    <key Tab>
    <text YourAccountPassword1>
    <wait 500>
    <key enter>
    <wait 500>


    <LaunchAndRename Local WoW2>
    <wait 1000>
    <text YourAccountName2>
    <wait 500>
    <key Tab>
    <text YourAccountPassword2>
    <wait 500>
    <key enter>
    <wait 500>



    <LaunchAndRename Local WoW3>
    <wait 1000>
    <text YourAccountName3>
    <wait 500>
    <key Tab>
    <text YourAccountPassword3>
    <wait 500>
    <key enter>
    <wait 500>



    <LaunchAndRename Local WoW4>
    <wait 1000>
    <text YourAccountName4>
    <wait 500>
    <key Tab>
    <text YourAccountPassword4>
    <wait 500>
    <key enter>
    <wait 500>
Ok Great ! now i can press
Alt + Ctrl + L
leave the keyboard for a cup of coffe, and when im back all 4 of my account will be logged in, all i have to do is click the "Enter World" button
and i only need to click the button once if im holding the Squiggle key

so far so good...
u leave the keyboard for a pee... and when ure back... wtf... all 4 account are Disconnected...
and for this event i have added this list of small code

Code:
//-----------------------------------------------------------
// PRESS CTRL O to Auto Login in case of Disconnected
// Make Sure that ALL account Username and Password box are Empty
// And ALL the blinking Cursor are IN the Username box 
//-----------------------------------------------------------
<Hotkey ScrollLockOn Ctrl O>
    <SendWinM WoW1>
        <wait 1000>
        <text YourAccountName1>
        <wait 500>
        <key Tab>
        <wait 500>
        <text YourAccountPassword1>
        <wait 500>
        <key enter>
        <wait 500>


    <SendWinM WoW2>
        <wait 1000>
        <text YourAccountName2>
        <wait 500>
        <key Tab>
        <wait 500>
        <text YourAccountPassword2>
        <wait 500>
        <key enter>
        <wait 500>



    <SendWinM WoW3>
        <wait 1000>
        <text YourAccountName3>
        <wait 500>
        <key Tab>
        <wait 500>
        <text YourAccountPassword3>
        <wait 500>
        <key enter>
        <wait 500>

    <SendWinM WoW4>
        <wait 1000>
        <text YourAccountName4>
        <wait 500>
        <key Tab>
        <wait 500>
        <text YourAccountPassword4>
        <wait 500>
        <key enter>
        <wait 500>
Ok, i thinks thats it, if anyone wants to add something please do