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