1. May 1, 2018  

    Any improvements to my HKN script here?

    Feel free to use this if it benefits you. I got some of it from the prebuilt list, the rest I made myself.

    What else could I utilize here? What else is a must have?

    //-----------------------------------------------------------
    // PRESS CTRL R TO RENAME WOW'S IF YOU LAUNCH THEM MANUALLY.
    //-----------------------------------------------------------
    <Hotkey ScrollLockOn Ctrl R>
    <SendPC local>
    <RenameWin "World of Warcraft" WoW1>
    <RenameWin "World of Warcraft" WoW2>
    <RenameWin "World of Warcraft" WoW3>
    <RenameWin "World of Warcraft" WoW4>
    <RenameWin "World of Warcraft" WoW5>

    //-----------------------------------------------------------
    // LAUNCH AND RENAME A COPY OF WOW.
    //-----------------------------------------------------------
    <Command LaunchAndRename>
    <SendPC %1%>
    <Run "C:\Users\Chris Foster\Desktop\World of Warcraft\World of Warcraft - The Burning Crusade 2.4.3\Wow.exe">
    <RenameTargetWin %2%>

    //-----------------------------------------------------------
    // 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>
    <LaunchAndRename Local WoW5>
    //-----------------------------------------------------------
    // 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>

    //-----------------------------------------------------------
    // RESIZE WINDOWS TO LOGIN, ALSO LOCATES WINDOWS ON 2nd SCREEN
    //-----------------------------------------------------------
    <Hotkey ScrollLockOn Alt Ctrl F11>
    <TargetWin WoW2>
    <SetWinRect 1920 25 800 600>
    <TargetWin WoW3>
    <SetWinRect 1920 442 800 600>
    <TargetWin WoW4>
    <SetWinRect 2816 25 800 600>
    <TargetWin WoW5>
    <SetWinRect 2816 442 800 600>

    //-----------------------------------------------------------
    // RESIZE WINDOWS TO GAME
    //-----------------------------------------------------------
    <Hotkey ScrollLockOn Alt Ctrl F12>
    <TargetWin WoW2>
    <SetWinSize 400 300>
    <TargetWin WoW3>
    <SetWinSize 400 300>
    <TargetWin WoW4>
    <SetWinSize 400 300>
    <TargetWin WoW5>
    <SetWinSize 400 300>


    //-----------------------------------------------------------
    // DEFINE HOTKEYS FOR ALL KEY COMBINATIONS THAT WILL GET
    // SENT TO BOTH WOWS. ADD MORE KEY COMBO'S IF YOU WANT.
    //-----------------------------------------------------------
    <Hotkey ScrollLockOn A-Z, 0-9, Plus, Minus, NumpadPlus, Space, F1-F12 except W, A, S, D, Q, E>
    <SendLabel w1, w2, w3, w4, w5>
    <Key %Trigger%>

    //-----------------------------------------------------------
    // DEFINE MOVEMENT KEYS THAT WILL GET SENT TO BOTH WOW'S.
    // ADD MORE KEYS IF YOU WANT.
    //-----------------------------------------------------------
    <MovementHotkey ScrollLockOn up, down, left, right>
    <SendLabel w1, w2, w3, w4, w5>
    <Key %Trigger%>


    // Currently disabled pending more testing:
    //-----------------------------------------------------------
    // 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 ScrollLockOn Oem3 LButton, MButton, RButton, Button4, Button5>
    //<SendLabel w1, w2, w3, w4, w5>
    // <ClickMouse %TriggerMainKey%>

  2. May 1, 2018  
    How you can use some abilities on 1 character at a time:
    // Arcane Torrent rotation
    <Hotkey ScrollLockOn E>
    <Toggle>
    <SendLabel w0>
    <Key Oem4>
    <Toggle>
    <SendLabel w1>
    <Key Oem4>
    <Toggle>
    <SendLabel w2>
    <Key Oem4>
    <Toggle>
    <SendLabel w3>
    <Key Oem4>
    <Toggle>
    <SendLabel w4>
    <Key Oem4>

    How to use grid healing (mouse clicks are broadcasted only on top of the grid frames):
    // 661 = top left x pos of grid, 585 = top left y pos of grid, 258 = width, 30 = height.
    <Hotkey ScrollLockOn LButton>
    <PassThrough>
    <If MouseIsOverWindowRect Leader 661 585 258 30>
    <SendLabel w0, w1, w2, w3, w4>
    <ClickMouse %Trigger%>


    Setting up FTL in hotkeynet and adding a FTL follow key:
    The ApplyTemplate is what is used to make a key into a FTL key. The one I set up sends f to both current window and to slaves, which is my follow button.
    https://pastebin.com/73tukdmr

    On F on every character I put this macro (works same way with abilities but change to ability instead of /follow):
    https://pastebin.com/6H5if5v2


    Cleanse rotation:
    It uses toggle to change who it cleanse, this makes it so everyone can dispel anyone else if it is spammed enough times (good if someone dies, is cced or if I need to dispel a lot of debuffs from the same target)
    https://pastebin.com/e5SxtwJL

    Macro for cleansing:
    https://pastebin.com/FYxwT36J

    These macros are also really good to have.
    Accept macro to accept most things:
    /script AcceptTrade();
    /script RetrieveCorpse();
    /click LFDRoleCheckPopupAcceptButton
    /click LFDDungeonReadyDialogEnterDungeonButton
    /script RepopMe();
    /click StaticPopup1Button1

    Leave group:
    /script LeaveParty()

    Invite macro:
    /inv character2
    /inv character3
    /inv character4
    /inv character5

  3. May 6, 2018  
    How you can use some abilities on 1 character at a time:
    Very good stuff here!
    Do you know how to make all of your toons CTMove or go to the enemy? I know how to do it on 3.5.5, but I can't seem to get it to work on 2.4.3...

    Or is melee MBoxing really not a thing on 2.4.3?

  4. May 6, 2018  
    I don't think it is possible to use IWT in any way in tbc, it was introduced in wotlk. I think only ranged teams are viable in tbc.

    I only play wotlk because of this since I think melee team is the most fun.

    Ranged is always the most viable in large scale tho, a 25 man shaman multiboxer can kill infinite amount of characters in melee range with1 fire nova since it always does full damage no matter amount of players.

  5. May 6, 2018  
    Very good stuff here!
    Do you know how to make all of your toons CTMove or go to the enemy? I know how to do it on 3.5.5, but I can't seem to get it to work on 2.4.3...

    Or is melee MBoxing really not a thing on 2.4.3?
    Using ctm w/o iwt is tricky. U would need to find a way to make ur chars right click on the target location which I couldn't.

    I tried melee boxing a bit on the PTR:
    http://forum.warmane.com/showthread.php?t=351713
    The method im using there is kinda viable in PvE but in PvP its not working out when a lot of movement is involved.
    Edited: May 6, 2018

  6. May 6, 2018  
    Okay... guess I'll stick to my 4x sham and 1x pal team.

    Think I should do Holy pal or prot? Trying to figure out which would be best for leveling, random world pvp, and dungeons (for fun/gear). I honestly don't know how well 4x shams can take damage. But I figured playing 1 healer and 4 dps would be easier than 1 tank and 4 dps/healers?

    Edit: Actually, the reason I'm playing TBC over WOTLK is high player population (but NOT hitting server cap so I can always log in).
    I also heard shamans are exceptionally well in this xpac.
    And I thought since it's TBC, that World PvP would be pretty dang easy to find. I played a TBC server a long time ago (multiboxed), and it seemed like players were just EVERYWHERE in Outland. I could drop down, then drop anyone/any team :D . Man that was a good experience back then. So hoping it's the same now :D
    Edited: May 6, 2018

Posting Permissions

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