To Avoid that ^
1) Open notepad
2) Paste this
@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
)
)
3) Save as NAME.bat
4) Run the .bat
5) Type in OSRS and hit enter
6) Put in number of clients you want open and hit enter
7) Profit??
I cant find who originally posted this but I keep seeing people asking how to do it.