Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!

maximum amount of bots running

Joined
Jan 24, 2017
Messages
5
why can't i run more than 2 bots at a time?

i have both suporter & sponsor status?

i should allow me to run 3 bots?

someone please help.
 
Joined
Dec 22, 2015
Messages
198
why can't i run more than 2 bots at a time?

i have both suporter & sponsor status?

i should allow me to run 3 bots?

someone please help.
are you getting the unable to create advertisement error when trying to start a 3rd rs client or is runemate stopping you from starting a 3rd bot?
 
Joined
Jan 24, 2017
Messages
5
are you getting the unable to create advertisement error when trying to start a 3rd rs client or is runemate stopping you from starting a 3rd bot?

I get the advertisement thing when i try starting it up
 
Moterboating is for closers.
Joined
Dec 18, 2017
Messages
43
you gota rapidly click on the rs/osrs client as fast as you can until you get blisters...or as many clients as you want.
 
Joined
Dec 22, 2015
Messages
198
this script can also be used to start X amount of osrs/rs3 clients

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