When the game fits on 1 dvd5 there is no need to add something in data lst.
If not, create Data2.lst, put this 5 files inside data2.lst and inside data1e.lst (data1e.lst is an exclude file). Edit Data1 section in compress.bat and add Data2 section with point to Data2.lst and the compressor should create 2 files: Data1.cab which contains all files except the files are listed in Data1e.lst and Data2.cab which contains all 5 files you mentioned.
For example:
Quote:
: Data1
set arc=Data1.cab
if exist .\TFB\%arc% goto Data2
echo.Creating %arc%, please wait...
echo.
echo.--------------------------------------------------------------------
arc a -ep1 -r -w.\ [email protected] [email protected] -dp"%choice%" .\TFB\%arc%
if ERRORLEVEL 1 goto arcfail
: Data2
set arc=Data2.cab
if exist .\TFB\%arc% goto end
echo.Creating %arc%, please wait...
echo.
echo.--------------------------------------------------------------------
arc a -ep1 -r -w.\ [email protected] -dp"%choice%" .\TFB\%arc%
if ERRORLEVEL 1 goto arcfail
|