Jump to content

Mirror mode help?


Recommended Posts

Posted

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

 

Posted

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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

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