forked from Soreepeong/XivAlexander
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.bat
40 lines (38 loc) · 2.19 KB
/
install.bat
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
31
32
33
34
35
36
37
38
39
40
@echo off
pushd "%~dp0"
mkdir "%LOCALAPPDATA%\XivAlexander"
copy XivAlexanderLoader32.exe "%LOCALAPPDATA%\XivAlexander\"
copy XivAlexanderLoader64.exe "%LOCALAPPDATA%\XivAlexander\"
copy XivAlexander32.dll "%LOCALAPPDATA%\XivAlexander\"
copy XivAlexander64.dll "%LOCALAPPDATA%\XivAlexander\"
mkdir "%APPDATA%\XivAlexander"
mkdir "%APPDATA%\XivAlexander\FontConfig"
mkdir "%APPDATA%\XivAlexander\ExcelTransformConfig"
mkdir "%APPDATA%\XivAlexander\ReplacementFileEntries"
mkdir "%APPDATA%\XivAlexander\TexToolsMods"
copy game.*.json "%APPDATA%\XivAlexander\"
copy config.runtime.json "%APPDATA%\XivAlexander\"
copy FontConfig\*.json "%APPDATA%\XivAlexander\FontConfig\"
copy ExcelTransformConfig\*.json "%APPDATA%\XivAlexander\ExcelTransformConfig\"
echo.
echo All required files copied.
echo.
echo *****************************************************************************************
echo *****************************************************************************************
echo **** ****
echo **** FINAL STEPS REMAINING: ****
echo **** ****
echo **** * Open game installation directory with ffxiv.exe and ffxiv_dx11.exe. ****
echo **** * Copy XivAlexander32.dll as d3d9.dll into there. ****
echo **** * Copy XivAlexander64.dll as d3d11.dll or dxgi.dll into there. Pick ONLY ONE. ****
echo **** * Alternatively, if you use only one of either DirectX 9 or DirectX 11 version, ****
echo **** then you can copy corresponding file (32 or 64) as dinput8.dll into there. ****
echo **** ****
echo **** Installation is not done until you do these! ****
echo **** ****
echo *****************************************************************************************
echo *****************************************************************************************
echo.
echo.
popd
pause