Close
Page 2 of 2 FirstFirst 1 2
Showing results 11 to 14 of 14
  1. #11

    Default

    Quote Originally Posted by afost69 View Post
    Also eatcarbs posted
    /assist name
    /cast spellname
    so would I have to for say know where that macro is in slaves action bar and hit that hokey after I'm in combat?!
    Quote Originally Posted by afost69 View Post
    Do I need to mouse click with oem3 pressed and click the follow/assist macro while targeting something to get slave to assist?!?!?

    and I am using HKN sample script: two wows on one PC
    No, you should be manually pressing the key that has the follow macro on it on your slave account. Clicking is generally not used for activating spells, abilities or macros. Clicking is usually restricted to actions like dropping AOE Reticules, using portals and the like.

    Really, we can guess all we want about what's going on, but you aren't really providing enough information to troubleshoot with. The problem could lie anywhere between your HotKeyNet script to your macro.

    1. Post your script, masking any personal information {passwords, account IDs}.
    2. Post your macros exactly as they are written in the game.
    3. Post what HotKeyNet says when you press the key you are trying to use to get your slave to activate the macro. It is the big window in HotKeyNet that says "Actions on this PC." Ensure that the "Show" box is checked.

    When posting, be sure to wrap each step in code tags [ code][/ code] so it is easier to read {remove the spaces between the brackets}. Also, please do not spam responses. There is a multiquote option at the bottom of every post right next to the "Reply with Quote" button. It looks like a Chat Bubble with Quotes in it next to a Plus sign.
    Last edited by Khatovar : 10-02-2013 at 03:31 AM
    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 _

  2. #12

    Default

    Quote Originally Posted by Khatovar View Post
    No, you should be manually pressing the key that has the follow macro on it on your slave account. Clicking is generally not used for activating spells, abilities or macros. Clicking is usually restricted to actions like dropping AOE Reticules, using portals and the like.

    Really, we can guess all we want about what's going on, but you aren't really providing enough information to troubleshoot with. The problem could lie anywhere between your HotKeyNet script to your macro.

    1. Post your script, masking any personal information {passwords, account IDs}.
    2. Post your macros exactly as they are written in the game.
    3. Post what HotKeyNet says when you press the key you are trying to use to get your slave to activate the macro. It is the big window in HotKeyNet that says "Actions on this PC." Ensure that the "Show" box is checked.

    When posting, be sure to wrap each step in code tags [ code][/ code] so it is easier to read {remove the spaces between the brackets}. Also, please do not spam responses. There is a multiquote option at the bottom of every post right next to the "Reply with Quote" button. It looks like a Chat Bubble with Quotes in it next to a Plus sign.
    Code:
    //================================================================
     // SAMPLE SCRIPT FOR TWO WOW'S ON ONE PC 
     //
     // Instructions: Copy this entire script (all the blue writing
     // on gray background including comments). Save it in a file. 
     // Load it into HotkeyNet.
     //
     // Toggle the scroll lock key to turn hotkeys off and on. (You 
     // can change this if you want, just like you can change 
     // everything else with HotkeyNet.) 
     //
     // Requires HotkeyNet build 147 or higher.
     // 
     // For more info, go to www.hotkeynet.com 
     //================================================================
     //-----------------------------------------------------------
     // PRESS CTRL R TO RENAME WOW'S IF YOU LAUNCH THEM MANUALLY 
     //-----------------------------------------------------------
     <Hotkey CapslockOn Ctrl R>
         <SendPC local>
             <RenameWin "World of Warcraft" WoW1> 
             <RenameWin "World of Warcraft" WoW2> 
     //-----------------------------------------------------------
     // SUBROUTINE TO LAUNCH AND RENAME A COPY OF WOW.
     //-----------------------------------------------------------
     <Command LaunchAndRename>
        <SendPC %1%> 
           <Run "c:\Program Files\World of Warcraft\WoW.exe">
             <RenameTargetWin %2%>
     //-----------------------------------------------------------
     // HOTKEY TO LAUNCH AND RENAME BOTH WOW'S.
     //-----------------------------------------------------------
     <Hotkey CapsLockOn Alt Ctrl L>
         <LaunchAndRename Local WoW1>
         <LaunchAndRename Local WoW2>
     //-----------------------------------------------------------
     // DEFINE MAIL LABELS FOR SENDING KEY STROKES 
     //-----------------------------------------------------------
     <Label w1 Local SendWinM WoW1>
     <Label w2 Local SendWinM WoW2>
    //-----------------------------------------------------------
     // DEFINE HOTKEYS FOR ALL KEY COMBINATIONS THAT WILL GET
     // SENT TO BOTH WOWS. ADD MORE KEY COMBO'S IF YOU WANT. 
     //-----------------------------------------------------------
     <Hotkey CapsLockOn 0-9, Plus, k, Minus, F1-F4, oem4, oem6, Tab, Space; CapsLockon shift 0-9, Plus, k, Minus, F1-F4, oem4, oem6>
     <SendLabel w1, w2>
     <Key %Trigger%> 
     //-----------------------------------------------------------
     // DEFINE MOVEMENT KEYS THAT WILL GET SENT TO BOTH WOW'S.
     // ADD MORE KEYS IF YOU WANT. 
     //-----------------------------------------------------------
     <MovementHotkey CapsLockOn up, down, left, right>
     <SendLabel w1, w2>
     <Key %Trigger%> 
     //-----------------------------------------------------------
     // 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 CapsLockOn Oem3 LButton, MButton, RButton, Button4, Button5>
        <SendLabel w1, w2> 
           <ClickMouse %TriggerMainKey%>
    So all I need to know is if I put the assist macro that EatCrabs posted on my "slaves" action bar in for say hotkey slot 5 and click five in my master window after attacking so that my "slave" will target the "master's" target?
    Last edited by MiRai : 10-02-2013 at 06:50 PM Reason: Use [CODE] tags

  3. #13

    Default

    srry one more post just to let you know..no worries I got the macro. It was kind of what I was trying to ask the whole time. So for anyone else wondering how do I do a assist macro all you have to do is put the /assist party1 macro on a hotkey that casts a spell on your "master"

  4. #14

    Default

    Quote Originally Posted by afost69 View Post
    srry one more post just to let you know..no worries I got the macro. It was kind of what I was trying to ask the whole time. So for anyone else wondering how do I do a assist macro all you have to do is put the /assist party1 macro on a hotkey that casts a spell on your "master"
    That's explained in the Newbie's Guide in post 4.
    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 _

Posting Rules

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