althtu 0 Posted April 12, 2022 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?
SubCZ 284 Posted April 12, 2022 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.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.