1. This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.

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

Discussion in 'Tutorials & Resources' started by Swych, Jan 25, 2018.

  1. Swych

    Joined:
    Dec 9, 2016
    Messages:
    3,031
    Likes Received:
    1,030
    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 (Text):
    1. @echo off
    2. :AMOUNT_SETUP
    3. SET result=false
    4. SET /P rs3input="Amount of RS3 clients: "
    5. SET /A rs3amount="%rs3input%"*1
    6. SET /P osinput="Amount of OSRS clients: "
    7. SET /A osamount="%osinput%"*1
    8. IF %rs3amount% GTR 0 SET result=true
    9. IF %osamount% GTR 0 SET result=true
    10. IF "%result%" == "true" GOTO RUN
    11. GOTO INVALID_AMOUNT
    12. :INVALID_AMOUNT
    13. ECHO Invalid input
    14. GOTO AMOUNT_SETUP
    15. :RUN
    16. FOR /L %%i IN (1, 1, %rs3amount%) do (
    17.       START jagex-jav://runescape.com/jav_config.ws
    18. )
    19. FOR /L %%i IN (1, 1, %osamount%) do (
    20.       START jagex-jav://oldschool33.runescape.com/jav_config.ws
    21. )
     
  2. Wet Rag

    Wet Rag easily triggered ✌

    Joined:
    Dec 31, 2015
    Messages:
    4,455
    Likes Received:
    1,694
    thank u
     
    Swych likes this.
  3. Savior

    Savior Java Warlord

    Joined:
    Nov 17, 2014
    Messages:
    4,906
    Likes Received:
    2,748
    np
     
    Fizzell and Swych like this.
  4. Fizzell

    Fizzell ScriptScriptScript

    Joined:
    Sep 26, 2015
    Messages:
    39
    Likes Received:
    7
    Thank you both
     
  5. Wet Rag

    Wet Rag easily triggered ✌

    Joined:
    Dec 31, 2015
    Messages:
    4,455
    Likes Received:
    1,694
    yes
     
  6. soyduro1

    Joined:
    Jan 1, 2016
    Messages:
    2
    Likes Received:
    1
    DOESNT WORKKK says the same thing..
     
    vietnammmm likes this.
  7. tyler 1

    Joined:
    Nov 22, 2018
    Messages:
    1
    Likes Received:
    0
    "save it as a .bat file and launch it" honestly how can i launch it?
     
  8. Swych

    Joined:
    Dec 9, 2016
    Messages:
    3,031
    Likes Received:
    1,030
    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.
     
  9. salvis2019

    Joined:
    Jun 29, 2018
    Messages:
    3
    Likes Received:
    0
    Have the same problem, but its works only if you dont use proxies. I need solution for proxies too.
    --- Double Post Merged, Dec 9, 2018, Original Post Date: Dec 9, 2018 ---
    i just cant open more than 4 osrs proxies.
     
  10. craig2009

    Joined:
    Dec 16, 2017
    Messages:
    43
    Likes Received:
    5
    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...
     
    #10 craig2009, Dec 26, 2018
    Last edited: Dec 26, 2018
    cummencing likes this.
  11. Lazlow

    Joined:
    Jan 12, 2019
    Messages:
    1
    Likes Received:
    0
    same :\
     
  12. Gengsta

    Gengsta Community Manager

    Joined:
    Apr 7, 2015
    Messages:
    1,392
    Likes Received:
    763
    You have to close all currently running RS clients before using this.
     
  13. spaken

    Joined:
    Oct 16, 2017
    Messages:
    1
    Likes Received:
    0
    same
     

Share This Page

Loading...