Jump to content

Can't start more than 2 osrs clients


itchykizer

Recommended Posts

1 hour ago, itchykizer said:

title says it all cant start more than 2 clients at a time anyone else having this problem 

This is a known issue, appears to be purposely implemented by jagex.

Save this code into a notepad and then save as a .bat file (name it whatever you like as long as you put .bat at the end)

 

 

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

 

 

Once you've done that, double click it, a command prompt will pop up type "osrs" and then type the amount of clients you want to open

 

EDIT: credit to a user "Savior" on another website that cant be mentioned

Edited by RoundBox
Link to comment
Share on other sites

  • 3 weeks later...
On 12/16/2019 at 3:50 PM, RoundBox said:

This is a known issue, appears to be purposely implemented by jagex.

Save this code into a notepad and then save as a .bat file (name it whatever you like as long as you put .bat at the end)

 

 

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

 

 

Once you've done that, double click it, a command prompt will pop up type "osrs" and then type the amount of clients you want to open

 

EDIT: credit to a user "Savior" on another website that cant be mentioned

Thanks for the batfile I had the same problem,
Question i use proxifier is there anyway i can set them up with diffrent proxys?

 

Link to comment
Share on other sites

  • Recently Browsing   0 members

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