Ok so here it goes.... it has been few days now that i decided to give a shot to Multiboxing... and guess what... i loved the idea(we leave behind the fact that since that day i havent played and i am trying to optimally tweak all those great posts(thanks to all btw for all the hard work!!!)to my needs and likes).So.. i used a simple 5 wow with 2 screen setup... moved to a Pip modification..... and now i want to add FTL / head about to explode. i found a nice Code out there without the name of the creator the has some great swapping techniques like Mouseover swap windows, Hotkey swap windows, rearrange windows... buttons showing if HKN and AWT are on etc. It is supposed to have FTL in(or so the name of the post said so) but i cant seem to figure it out since it seems different from what i read here in the forum. tried to erase the Templates and use the ones i found here in the forums but swapping stopped working :/ . So i post the Code i found and my humble wish is that someone tells me hot to keep all the Visuall tweaks of this code BUT also add FTL use to it...
Thanks in advance and sorry for the long post
Part 1:
Code:// Tab - Toggles hot keys on or off // Ctrl Alt A - Toggle active window tracking // Ctrl Alt L - Launch 5 instances of world of warcraft // Ctrl Alt X - Make the active window the main window // Ctrl Alt F1 - Make WoW1 the main window // Ctrl Alt F2 - Make WoW2 the main window // Ctrl Alt F3 - Make WoW3 the main window // Ctrl Alt F4 - Make WoW4 the main window // Ctrl Alt F5 - Make WoW5 the main window // Ctrl Alt D Arrange the windows in the default layout // Ctrl Alt 1 - relaunch WoW1 // Ctrl Alt 2 - relaunch WoW2 // Ctrl Alt 3 - relaunch WoW3 // Ctrl Alt 4 - relaunch WoW4 // Ctrl Alt 5 - relaunch WoW5 // Keys 1 - 0 and the minus key are sent to all windows //----------------------------------------------------------- // Launch and rename world of warcraft //----------------------------------------------------------- <Command LaunchAndRename> <SendPC local> <Run "C:\Users\Public\Games\World of Warcraft\WoW.exe"> <RenameTargetWin %1%> //----------------------------------------------------------- // Template: SetPos Command // // %1% - Window number. (1, 2, 3, 4 or 5) // %2% - Window name. Passed as a parameter value by callers. // %3% - Window X coordinate // %4% - Window Y coordinate // %5% - Window Width // %6% - Window Height //----------------------------------------------------------- <Template SetPos> <Command SetPos%1%> <SetVar Win%1% %2%> <TargetWin %2%> <SetWinPos %3% %4%> <SetWinSize %5% %6%> <UpdateWin> <EndTemplate> //----------------------------------------------------------- // ApplyTemplate: SetPos1 Command //----------------------------------------------------------- <ApplyTemplate SetPos 1 "%1%" "0" "0" "965" "795"> //----------------------------------------------------------- // ApplyTemplate: SetPos2 Command //----------------------------------------------------------- <ApplyTemplate SetPos 2 "%1%" "0" "795" "965" "795"> //----------------------------------------------------------- // ApplyTemplate: SetPos3 Command //----------------------------------------------------------- <ApplyTemplate SetPos 3 "%1%" "965" "0" "795" "660"> //----------------------------------------------------------- // ApplyTemplate: SetPos4 Command //----------------------------------------------------------- <ApplyTemplate SetPos 4 "%1%" "1760" "0" "795" "660"> //----------------------------------------------------------- // ApplyTemplate: SetPos5 Command //----------------------------------------------------------- <ApplyTemplate SetPos 5 "%1%" "965" "660" "1135" "930"> //----------------------------------------------------------- // Default Window Layout //----------------------------------------------------------- <Command DefaultWindowLayout> // Win1 position <SetPos1 WoW1> // Win2 position <SetPos2 WoW3> // Win3 position <SetPos3 WoW5> // Win4 position <SetPos4 WoW4> // Win5 position <SetPos5 WoW2> //----------------------------------------------------------- // Template: Swap Command // // There are five window positions. Each window position has // a number assigned to it. This command swaps the positions // of two windows with one another. // // %1% - Window Position Number for window A // %2% - Window Position Number for window B // %3% - Window name of the window to be placed at position A // %4% - Window name of the window to be placed at position B //----------------------------------------------------------- <Template Swap> <Command Swap%1%And%2%> // Win%1% position <SetPos%1% %3%> // Win%2% position <SetPos%2% %4%> <EndTemplate> //----------------------------------------------------------- // ApplyTemplate: Swap1and5 Command //----------------------------------------------------------- <ApplyTemplate Swap 1 5 "%2%" "%1%"> //----------------------------------------------------------- // ApplyTemplate: Swap2and5 Command //----------------------------------------------------------- <ApplyTemplate Swap 2 5 "%2%" "%1%"> //----------------------------------------------------------- // ApplyTemplate: Swap3and5 Command //----------------------------------------------------------- <ApplyTemplate Swap 3 5 "%2%" "%1%"> //----------------------------------------------------------- // ApplyTemplate: Swap4and5 Command //----------------------------------------------------------- <ApplyTemplate Swap 4 5 "%2%" "%1%"> //--------------------------------------------- // Display green HKN if HotkeyNet is forwarding keys // Display green AWT if active window tracking is enabled // Default to off //---------------------------------------------- <Command AutoExec> // Initialise the HKN indicator <DoHotKey Hotkey NumLockOn Alt Ctrl Shift H> // Initialise the AWT indicator <DoHotKey Hotkey NumLockOn Alt Ctrl Shift A> // turn hotkeys off <DoHotKey Hotkey NumLockOn Alt Ctrl Shift T> <SetActiveWindowTracking Off> <SetVar ActOff true> <DefaultWindowLayout> //----------------------------------------------------------- // Initialise HKN window - NumLockOn Alt Ctrl Shift H //----------------------------------------------------------- <Hotkey NumLockOn Alt Ctrl Shift H> <If WinDoesNotExist HKN> <CreatePanel HKN 2500 1535 30 30> <TargetWin HKN> <CreateColoredButton ON 0 0 30 30 0x00FF00 0x0F0F0F ???> <AddButtonToPanel ON HKN> <SetButtonText ON HKN> <TargetWin HKN> <AlwaysOnTop on> <RemoveWinFrame> <UpdateWin> <EndIf> <SetButtonColors ON 0xfF0000 0xffFFff > <SetButtonText ON off> //----------------------------------------------------------- // Initialise AWT window - NumLockOn Alt Ctrl Shift A //----------------------------------------------------------- <Hotkey NumLockOn Alt Ctrl Shift A> <If WinDoesNotExist AWT> <CreatePanel AWT 2400 1535 30 30> <TargetWin AWT> <CreateColoredButton ACT 0 0 30 30 0x0000FF 0xFFFFFF ???> <AddButtonToPanel ACT AWT> <SetButtonText ACT AWT> <TargetWin AWT> <AlwaysOnTop on> <RemoveWinFrame> <UpdateWin> <endif> <SetButtonColors ACT 0xfF0000 0xffFFff > <SetButtonText ACT off> //----------------------------------------------------------- // Hot keys off - NumLockOn Alt Ctrl Shift T //----------------------------------------------------------- <Hotkey NumLockOn Alt Ctrl Shift T> <If HotkeysAreOn> <TurnHotkeysOff> <EndIf>
Connect With Us