Welcome!

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

Sign up now!

Tutorial How to avoid the 'Unable to create advertising' error

Joined
Dec 9, 2016
Messages
4,022
Hi all,

As some of you are aware when you attempt to open multiple clients sometimes you come across the 'unable to create advertising error'. @Savior created a resource a few months ago to launch a specified number of clients from the command line after choosing the game-mode. I have adapted it to be able to open up multiple clients of both game modes for users who bot both game modes. You can find the code below, copy and paste it into a notepad document, save it as a .bat file and launch it.

Code:
@echo off
:AMOUNT_SETUP
SET result=false
SET /P rs3input="Amount of RS3 clients: "
SET /A rs3amount="%rs3input%"*1
SET /P osinput="Amount of OSRS clients: "
SET /A osamount="%osinput%"*1
IF %rs3amount% GTR 0 SET result=true
IF %osamount% GTR 0 SET result=true
IF "%result%" == "true" GOTO RUN
GOTO INVALID_AMOUNT
:INVALID_AMOUNT
ECHO Invalid input
GOTO AMOUNT_SETUP
:RUN
FOR /L %%i IN (1, 1, %rs3amount%) do (
      START jagex-jav://runescape.com/jav_config.ws
)
FOR /L %%i IN (1, 1, %osamount%) do (
      START jagex-jav://oldschool33.runescape.com/jav_config.ws
)
 
Joined
Dec 9, 2016
Messages
4,022
Open notepad, type whatever you have to type, hit "save as", change the file type to 'All files' then save it as launcher.bat and then thats what you want to launch.
"save it as a .bat file and launch it" honestly how can i launch it?
 
Joined
Jun 29, 2018
Messages
3
Have the same problem, but its works only if you dont use proxies. I need solution for proxies too.
 
i just cant open more than 4 osrs proxies.
 
Joined
Dec 16, 2017
Messages
43
Ive just saved this file under "all files", ive saved the name of file as "Launcher.bat" .

It brought up a programme, asked me how many RS3 clients, then OSRS, i put the number of clients i wanted for osrs , which i only put as 1 to test this.....

It launched, but once again it popped up with the message "Unable to create advertising"

Please can someone tell me what has gone wrong...
 
Last edited:
Joined
Jan 12, 2019
Messages
1
Ive just saved this file under "all files", ive saved the name of file as "Launcher.bat" .

It brought up a programme, asked me how many RS3 clients, then OSRS, i put the number of clients i wanted for osrs , which i only put as 1 to test this.....

It launched, but once again it popped up with the message "Unable to create advertising"

Please can someone tell me what has gone wrong...
same :\
 
Top