Apoc
Well-Known Member
- Joined
- Jan 16, 2010
- Messages
- 2,790
- Reaction score
- 94
While I do love ISBoxer, I thought it was time to release part of a new tool I've been writing. (A new relogger for all of our bots)
Basically; this will let you start multiple D3 clients, from the same folder (a'la ISBoxer style).
Current version is probably a bit buggy, but should work.
It takes 2 arguments, the path to the game, and a number of instances to open.
From a command line:
The above will start 5 instances of the game, from the D3 path specified. (Change the path to the correct one for your system) I suggest making a shortcut with the command line arguments defined already.
You MUST run as administrator, or it'll just flat out die on you. (I haven't included a manifest to force admin, yes, I'm lazy)
Let me know if you have any issues.
Enjoy folks.
Download: Removed by Nesox
A simple .bat file you can use to run the starter.
Basically; this will let you start multiple D3 clients, from the same folder (a'la ISBoxer style).
Current version is probably a bit buggy, but should work.
It takes 2 arguments, the path to the game, and a number of instances to open.
From a command line:
Code:
D3Starter.exe "C:\D3\Diablo III.exe" 5
You MUST run as administrator, or it'll just flat out die on you. (I haven't included a manifest to force admin, yes, I'm lazy)
Let me know if you have any issues.
Enjoy folks.
Download: Removed by Nesox
A simple .bat file you can use to run the starter.
Code:
@echo off
REM the path to the starter. Leave this as it is if this .bat file is in the same folder as the starter.
SET StarterPath=%~dp0
REM SET StarterPath="C:\Starter\"
REM the path to D3
SET D3Path="C:\Games\Diablo III\Diablo III.exe"
REM the number of instances of the game to start up.
SET NumInstances=2
"%StarterPath%D3Starter.exe" %D3Path% %NumInstances%
pause
Code:
10/26/2012
- Added a manifest. Forces admin now.
Last edited: