- Joined
 - Dec 8, 2018
 
- Messages
 - 38
 
- Thread Author
 - #1
 
I know how to open 3 OSRS clients using this: Tutorial - Bypass "Unable to create advertising" error
	
	
		
			
		
	
However, I already have 3 clients open on my main IP address but want to open another 3 clients using my proxy, via proxifier.
Doing the above method is fine, however, I've duplicated the Jagex Launcher (located in: C:\Users\Name\jagexcache\jagexlauncher\bin and renamed it JagexLauncher1.
The above method, only opens the original Jagex Launcher which is currently being used by my main IP 3 bots and if I were to use it to open another 3, they wouldn't be using my proxy via proxifier.
With the renamed Launcher in mind, how can I tweak the .bat to open the duplicate Launcher.
I hope this is understandable, lol.
Any help appreciated.
			
			- @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
 - )
 - )
 
However, I already have 3 clients open on my main IP address but want to open another 3 clients using my proxy, via proxifier.
Doing the above method is fine, however, I've duplicated the Jagex Launcher (located in: C:\Users\Name\jagexcache\jagexlauncher\bin and renamed it JagexLauncher1.
The above method, only opens the original Jagex Launcher which is currently being used by my main IP 3 bots and if I were to use it to open another 3, they wouldn't be using my proxy via proxifier.
With the renamed Launcher in mind, how can I tweak the .bat to open the duplicate Launcher.
I hope this is understandable, lol.
Any help appreciated.


