ocyra Posted May 11 Share Posted May 11 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 ) ) Quote Link to comment Share on other sites More sharing options...
Czar Posted May 14 Share Posted May 14 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 1 Quote Link to comment Share on other sites More sharing options...