Jump to content

Mirror mode help?


Recommended Posts

Hey everyone, I just started using the manager and not sure if I'm using mirror mode properly. 

Currently using java 8, was recommended for mirror mode. In client configurations I have Mirror

mode selected and all other options left default. When a bot starts up it loads everything except 

osrs itself and shows "searching for osrs client to attach to." If i manually start the client everything

seems to work. When I start a group of bots I would wait for all osbot client windows to open and 

once they are searching for osrs client I use some code to open all osrs clients that also allows

me to open more than two osrs clients without any error. Below is the code. By doing it this way are 

my proxies working properly? Should I be using sandboxie? I have never used it before but there 

was a post on here a while ago about it, but i wasn't able to find it. Any advice on this would be 

greatly appreciated. Thanks in advance!

@echo off
 
 
:GAMETYPE_SETUP
SET /P gametype="Gametype (rs3/osrs): "
IF /I "%gametype%" == "rs3" GOTO AMOUNT_SETUP
IF /I "%gametype%" == "osrs" GOTO AMOUNT_SETUP
GOTO INVALID_GAMETYPE
 
 
:AMOUNT_SETUP
SET /P input="Amount of clients: "
SET /A amount="%input%"*1
IF %amount% GTR 0 GOTO RUN
GOTO INVALID_AMOUNT
 
 
:INVALID_GAMETYPE
ECHO Invalid input
GOTO GAMETYPE_SETUP
 
:INVALID_AMOUNT
ECHO Invalid input
GOTO AMOUNT_SETUP
 
 
:RUN
FOR /L %%i IN (1, 1, %amount%) do (
    IF /I "%gametype%" == "rs3" (
        START jagex-jav://runescape.com/jav_config.ws
    ) else (
        START jagex-jav://oldschool1.runescape.com/jav_config.ws
    )
)

 

Link to comment
Share on other sites

You must use the legacy jagex launcher for them to hook together, and if you want to use proxies with mirror mode then you must hook proxifier to the actual osrs client not osbot.

Come to discord so we can answer some more questions and help you, the way the questions are worded makes it difficult to help better :feels:

  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...