forked from OpenMultiBoxing/OpenMultiBoxing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwow335_setup.bat
More file actions
30 lines (30 loc) · 984 Bytes
/
Copy pathwow335_setup.bat
File metadata and controls
30 lines (30 loc) · 984 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
REM For Wow 3.3.5 there is no -config so we make directories
REM for each account.
REM call with wow335_setup N for each of your accounts (1, 2, 3, etc.))
REM Assumes your main Wow directory is called "Wow" and you run this from
REM the parent directory of your main Wow directory.
REM
REM Needs to be run as admin in order to make hard links.
REM
@if not [%1]==[] goto main
@echo Must specify a number for the clone - open/edit this bat file
@exit /b 1
:main
echo "Working on Wow%1"
mkdir Wow%1
cd Wow%1
mklink /d Data ..\Wow\Data
mklink /d Interface ..\Wow\Interface
del Wow.exe
mklink /h Wow.exe ..\Wow\Wow.exe
mklink Battle.net.dll ..\Wow\Battle.net.dll
mklink dbghelp.dll ..\Wow\dbghelp.dll
mklink DivxDecoder.dll ..\Wow\DivxDecoder.dll
mklink ij15.dll ..\Wow\ij15.dll
mklink msvcr80.dll ..\Wow\msvcr80.dll
mklink Scan.dll ..\Wow\Scan.dll
mklink unicows.dll ..\Wow\unicows.dll
mkdir WTF
mklink /d WTF\Account ..\..\Wow\WTF\Account
copy ..\Wow\WTF\Config.wtf WTF\Config.wtf
cd ..