Close
Showing results 1 to 8 of 8

Hybrid View

  1. #1

    Default

    I just got up and I'd have to see the whole script, but it looks like you have the keys defined twice.
    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. #2

    Default

    Quote Originally Posted by Khatovar View Post
    I just got up and I'd have to see the whole script, but it looks like you have the keys defined twice.
    Code that works currently:

    Code:
    //-----------------------------------------------------------
    // 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>
    
    //-----------------------------------------------------------
    // SUBROUTINE TO LAUNCH AND RENAME A COPY OF WOW.
    //-----------------------------------------------------------
    <Command LaunchAndRename>
       <SendPC %1%>
          <Run "D:\Spel\World of Warcraft\WoW.exe">
            <RenameTargetWin %2%>
    
    
    //---------------------------------------------------------------- 
    // SET PIP CONFIGURATION  
    // Usage: <SetPip BigWindowName LittleWindowName>  
    // This command is called by <Hotkey F1> which is defined below.   
    //----------------------------------------------------------------  
    <Command SetPip>     
    <TargetWin %2%>
            <SetWinSize 384 216>
            <SetWinPos 1536 864>
         <TargetWin %1%>
            <SetWinPos 0 0>
            <SetWinSize 1920 1080>
         <TargetWin %2%>
            <SetForegroundWin>
            <UpdateWin>
         <TargetWin %1%>
            <SetWinRegion 1536 864 384 216>
            <SetForegroundWin>   
    //----------------------------------------------------------------  
    // TOGGLE PIP CONFIG WITH HOTKEY 
    //----------------------------------------------------------------  
    <Hotkey ScrollLockOn Numpad0>
         <Toggle>
            <SetPip WoW1 WoW2>
         <Toggle>
            <SetPip WoW2 WoW1>
    //-----------------------------------------------------------
    // HOTKEY TO LAUNCH AND RENAME BOTH WOW'S.
    //-----------------------------------------------------------
    <Hotkey ScrollLockOn 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.
    //-----------------------------------------------------------
    <KeyList MyList A-Z, 0-9, Numpad1-Numpad9, Divide, Shift, Multiply, NumpadMinus, NumpadPlus, Backspace, Insert, Home, PgUp, PgDn, Delete, F1-F12,  Oem1-Oem7, except OEM2, w, a, s, d>
    
    
    <Hotkey ScrollLockOn MyList; ScrollLockOn Shift MyList>
    <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>
    <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 Oem5>
    
    <Hotkey ScrollLockOn Oem5 LButton, MButton, RButton, Button4, Button5>
       <SendLabel w1, w2>
          <ClickMouse %TriggerMainKey%>
    If i add these it will give me that error:

    Code:
    <Hotkey ScrollLockOn MyList; ScrollLockOn Shift MyList; ScrollLockOn Alt MyList; ScrollLockOn Ctrl MyList; ScrollLockOn Ctrl Shift MyList>

Posting Rules

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