I can't figure out what the hell is going on with this BWP Textpack crap.
After the extraction process and before starting the install, I searched for all files containing BWP_Textpack.installed, and there are only two:
D:\Spiele\BGII - SoA\BiG World Textpack.bat contains the lines:
SET INSTALL_MARKER=BWP_Textpack.installed
:: set absolute path for install marker file
SET INSTALL_MARKER=%~dp0\%INSTALL_MARKER%
IF NOT EXIST "%INSTALL_MARKER%" (
type nul >"%INSTALL_MARKER%"
)
D:\Spiele\BGII - SoA\BiG World Installpack\source\initialize.bat contains the line:
%IFN% BWP_Textpack.installed CALL "%BWTP%.bat"
Now, that last one would probably cause the output
D:\Spiele\BGII - SoA>IF NOT EXIST BWP_Textpack.installed Call "BiG World Textpack.bat"
So, what does BiG World Textpack.bat do?
D:\Spiele\BGII - SoA\BiG World Textpack.bat
IF exist "BiG World Install.bat" (
if "%BWIP%" == "" (
echo.
echo Please start the "BiG World Install.bat"
echo.
echo Bitte startet die "BiG World Install.bat"
echo.
echo Veuillez lancer le "BiG World Install.bat"
echo.
pause
exit
)
)
Funny, BiG World Install.bat already exists at this point, so the installations goes to hell at this point.
I'll try to delete this one before starting installation just for fun...