Close
Showing results 1 to 5 of 5

Threaded View

  1. #1

    Default [Trove] just a few questions.

    ok as a few may know ONE of trions newest games is Trove and all im wanting to do is set this up on 1 pc if possible to just run 1 alt account for me.

    in the settings and such on it it mentions other pc's but im having issues finding info to see if it lets me controll 2 windows of the same game on one pc

    i got it to work somewhat but, it keeps renaming them both to trove 2 and the bindings arent working im not holding the keydown longer then about .5 seconds probably

    Code:
    //================================================================
    // SCRIPT FOR TWO TROVE'S
    //================================================================
    
    //-----------------------------------------------------------
    // PRESS CTRL R TO RENAME TROVE'S IF YOU LAUNCH THEM MANUALLY.
    //-----------------------------------------------------------
    <Hotkey ScrollLockOn Ctrl R>
        <SendPC local>
           <RenameWin "Trove" Trove1>
           <RenameWin "Trove" Trove2>
    
    //-----------------------------------------------------------
    // SUBROUTINE TO LAUNCH AND RENAME A COPY OF TROVE.
    //-----------------------------------------------------------
    <Command LaunchAndRename>
       <SendPC %1%>
          <Run "C:\Program Files (x86)\Glyph\Games\Trove\Live\Trove.exe">
          <RenameTargetWin %2%>
          <RemoveWinFrame>
    
    //-----------------------------------------------------------
    // SUBROUTINE TO Position Windows for 3 boxing.
    //-----------------------------------------------------------
    <Command ResizeAndPosition>
       <SendPC Local>
          <SendWin %1%>
                  <SetWinSize 640 512>
                  <SetWinPos 0 0>
          <SendWinM %2%>
                 <SetWinSize 640 512>
                  <SetWinPos 1920 0>     
            <SendWinM %3%>
                <SetWinSize 640 512>
                <SetWinPos 2560 512>
    
    //-----------------------------------------------------------
    // HOTKEY TO LAUNCH AND RENAME YOUR TROVE WINDOWS
    //-----------------------------------------------------------
    <Hotkey ScrollLockOn Alt Ctrl R>
        <LaunchAndRename Local Trove1>
        <LaunchAndRename Local Trove2>
        <ResizeAndPosition Trove1 Trove2>
    
    //-----------------------------------------------------------
    // DEFINE MAIL LABELS FOR SENDING KEY STROKES.
    //-----------------------------------------------------------
    <Label w1 Local SendWinM Trove1>
    <Label w2 Local SendWinM Trove2>
    
    //-----------------------------------------------------------
    // DEFINE HOTKEYS FOR ALL KEY COMBINATIONS THAT WILL GET
    // SENT TO ALL TROVES.
    //-----------------------------------------------------------
    <Hotkey ScrollLockOn A-Z, 0-9, Plus, Minus, Space, F1-F12, Enter, except W, A, S, D, M>
    <SendLabel t1, t2>
    <Key %Trigger%>
    
    //-----------------------------------------------------------
    // DEFINE MOVEMENT KEYS THAT WILL GET SENT TO ALL TROVE'S.
    // ADD MORE KEYS IF YOU WANT.
    //-----------------------------------------------------------
    <MovementHotkey ScrollLockOn up, down, left, right, W, A, S, D>
    <SendLabel t1, t2>
    <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 t1, t2>
          <ClickMouse %TriggerMainKey%>
    <Label w2 Local SendWinM Trove2>
    
    //-----------------------------------------------------------
    // DEFINE HOTKEYS FOR ALL KEY COMBINATIONS THAT WILL GET
    // SENT TO ALL TROVES. ADD MORE KEY COMBO'S IF YOU WANT.
    //-----------------------------------------------------------
    <Hotkey ScrollLockOn A-Z, 0-9, Plus, Minus, Space, F1-F12, Enter>
    <SendLabel t1, t2, t3>
    <Key %Trigger%>
    
    //-----------------------------------------------------------
    // DEFINE MOVEMENT KEYS THAT WILL GET SENT TO ALL TROVE'S.
    // ADD MORE KEYS IF YOU WANT.
    //-----------------------------------------------------------
    <MovementHotkey ScrollLockOn up, down, left, right>
    <SendLabel t1, t2>
    <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 t1, t2>
          <ClickMouse %TriggerMainKey%>
    Last edited by Khatovar : 09-29-2014 at 11:28 AM

Posting Rules

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