- Joined
- Nov 17, 2014
- Messages
- 4,906
- Thread Author
- #1
When you want to run more than 2 RuneScape clients simultaneously on one machine, the client will fail to load if there are already 2 clients running. To prevent that, you need to start all clients at once in a very short amount of time, but even that begins to be tricky if you want to run quite more than just 3 or 4 clients.
To clarify, this is a limitation at Jagex's end, not RuneMate.
I wrote a small batch script (Windows only) which will help you start a salve of clients at once.
Run the file and enter the game mode and amount of clients you would like to start.
To clarify, this is a limitation at Jagex's end, not RuneMate.
I wrote a small batch script (Windows only) which will help you start a salve of clients at once.
Run the file and enter the game mode and amount of clients you would like to start.
Save the following code as a .bat file
Code:
@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
)
)