Jump to content
Frequently Asked Questions
  • Are you not able to open the client? Try following our getting started guide
  • Still not working? Try downloading and running JarFix
  • Help! My bot doesn't do anything! Enable fresh start in client settings and restart the client
  • How to purchase with PayPal/OSRS/Crypto gold? You can purchase vouchers from other users
  • Quickstart only opening one instance of DreamBot?


    althtu

    Recommended Posts

    Posted

    I'm trying to open multiple instances of DreamBot with a Windows batch file as follows:

    @echo off
    java -jar C:\Users\USERNAME\DreamBot\BotData\client.jar -account "Account 1" -proxy "Proxy 1"
    java -jar C:\Users\USERNAME\DreamBot\BotData\client.jar -account "Account 2" -proxy "Proxy 2"

    the above works fine for the first instance but doesn't run any instances after Account 1, Proxy 1. If I close the first instance, the batch file continues to the next line and opens the second one but I want them opening simultaneously. Can anyone help me figure out how to do it?

    Posted

    You can do

    start javaw -jar C:\Users\USERNAME\DreamBot\BotData\client.jar -account "Account 1" -proxy "Proxy 1" 
    start javaw -jar C:\Users\USERNAME\DreamBot\BotData\client.jar -account "Account 2" -proxy "Proxy 2"

    This will open both clients without opening the console. If you want the console you'd put java instead of javaw.

    Posted

    Perfect. Thank you so much :'D

    Archived

    This topic is now archived and is closed to further replies.

    ×
    ×
    • Create New...

    Important Information

    We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.