Close
Showing results 1 to 3 of 3
  1. #1

    Default Trouble getting the keys to coordinate.

    I'm having trouble getting any keys but the ones for movement to effect any character but the master. I'm not sure why - other than I'm probably doing something wrong - but I was hoping someone could help me figure it out?

    The program is showing a few errors, all of which are "text was found outside <> symbols; that's not allowed." next to things like <SendLabel w1, w2> but there's no text there that I can see.


    I'm using the 2 accounts 1 computer sample script from the HotKeyNet site, if that helps any.

    //-----------------------------------------------------------//DEFINE MAIL LABELS FOR SENDING KEYSTROKES
    //-----------------------------------------------------------
    <Labelw1 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 ScrollLockOn A-Z, 0-9, Plus, Minus, F1-F12 except W, A, S, D, Q, E>
    <SendLabel w1, w2>
    <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, w, s, a, d, q, e>
    <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 ScrollLockOn Oem3 LButton, MButton, RButton, Button4, Button5>
    <SendLabel w1, w2>
    <ClickMouse %TriggerMainKey%>

  2. #2

    Default

    I changed 2 things and there were no more errors. There needs to be a line break in the first line

    Code:
    //-----------------------------------------------------------
    //DEFINE MAIL LABELS FOR SENDING
    and a space between "Label" and "w1"

    Code:
    <Label w1 Local SendWinM WoW1>
    Outside that, it looks like there is missing code required to rename the windows. I didn't get any errors about text outside of the <>'s before or after making the above changes. It looks like roughly half the script it missing.
    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 _

  3. #3

    Default

    You need to rename the wow windows so this code can send the keys to those windows


    //-----------------------------------------------------------
    // 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>

Posting Rules

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