PDA

View Full Version : HKN Bnet launch with safe account names and passwords and crash ready



Boogieman
12-11-2009, 03:15 AM
I use 2 directories so the main is in 1 by him self and the 2 slaves on the other
so the master only needs the password and the 2 slaves use the account name and password

And Ive written this to rename the windows send the user names and passwords and then rename the window again so that there can never be a mistake made where your account name or password is sent into the ingame chat they will only work at the log in screen
it positions the windows as such
main is on left screen full screen and slaves each take up 1 quarter of the right screen top left corner for slave 1 and bottom left corner for slave 2

The f12 hotkeys are never meant to be used alone they are always triggered by the Rctrl apps hotkey and it all goes to work

And if 1 or more windows crash ive set it up so that you can trigger rctrl apps hotkey again with the window or windows that have not crashed still running and it will find the missing window and replace it and log you in again but do nothing to the windows that are still running


so here is my code



<Hotkey rctrl f12>
<sendpc Local>
<If WinDoesNotExist "wow1">
<Run "C:\program files\World of Warcraft\wow.exe">
<RenameTargetWin WOW1>
<RemoveWinFrame>
<SetWinPos 0 0>
<SetWinSize 1280 1024>
<sendwin WOW1>
<text Password>
<key enter>
<renamewin WOW1 wow1>
<Label w1 Local SendWinM wow1>

<Hotkey ralt f12>
<sendpc local>
<If WinDoesNotExist "wow2">
<Run "c:\Program Files\World of Warcraft 2\wow.exe">
<RenameTargetWin WOW2>
<RemoveWinFrame>
<SetWinSize 640 500>
<SetWinPos 1290 10>
<wait 4000>
<sendwin WOW2>
<text User name>
<wait 1000>
<key tab>
<wait 1000>
<text Password>
<key enter>
<wait 3000>
<key down>
<wait 1000>
<key enter>
<renamewin WOW2 wow2>
<Label w2 Local SendWinM wow2>

<Hotkey rshift f12>
<sendpc local>
<If WinDoesNotExist "wow3">
<Run "c:\Program Files\World of Warcraft 2\wow.exe">
<RenameTargetWin WOW3>
<RemoveWinFrame>
<SetWinSize 640 500>
<SetWinPos 1290 520>
<wait 4000>
<sendwin WOW3>
<text User name>
<wait 1000>
<key tab>
<wait 1000>
<text Password>
<key enter>
<wait 3000>
<key down>
<wait 1000>
<key down>
<wait 1000>
<key enter>
<renamewin WOW3 wow3>
<Label w3 Local SendWinM wow3>


<Hotkey rctrl Apps>
<If WinDoesNotExist "wow1">
<DoHotkey Hotkey rctrl f12>
<wait 1000>
<If WinDoesNotExist "wow2">
<DoHotkey Hotkey ralt f12>
<wait 1000>
<If WinDoesNotExist "wow3">
<DoHotkey Hotkey rshift f12>