View Single Post
  #6  
Old 16-07-2014, 01:35
mikii mikii is offline
Registered User
 
Join Date: May 2010
Location: bosnia
Posts: 23
Thanks: 5
Thanked 0 Times in 0 Posts
mikii is on a distinguished road
Quote:
Originally Posted by NamelessOne View Post
Oops, just open the Compress.bat with Notepad and change Data2.lst to Data1.lst
I cannot find these files,or i dont understand what to rename
echo off
:start
cls
set choice1=
set arc=
set retry=
echo.
echo.Conversion by The Nameless One.
set /p choice1=Select your game directory (e.g. C:\Program Files\Murdered Soul Suspect):
if "%choice1%"=="" goto start
cls
echo.
echo Creating Data.cab's, please wait...
echo.
ata1
set arc=Data1.ist
if exist .\DOS_1\%arc% goto Data1
arc a -ep1 -r -w.\ -m0 [email protected] -dp"%choice1%" .\DOS_1\%arc%
if ERRORLEVEL 1 goto arcfail
:end
ata2
set arc=Data2.ist
if exist .\DOS_2\%arc% goto Data2
arc a -ep1 -r -w.\ -msrep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8 [email protected] [email protected] -dp"%choice1%" .\DOS_2\%arc%
if ERRORLEVEL 1 goto arcfail
:end
echo.Finished!
echo.
:start2
set create=
set choice2=
set choice3=
echo.
:create
set /p create=You want to create ISO files? [Y/N]:
if /I "%create%"=="Y" goto choice2
if /I "%create%"=="N" goto end
:choice2
echo.
set /p choice2=Select your imgBurn.exe directory (e.g. C:\Program Files (x86)\ImgBurn\ImgBurn.exe):
if /I "%choice2%"=="" goto end
:choice3
echo.
set /p choice3=Select the destination directory of the ISO files (e.g. C:\Temp):
if /I "%choice3%"=="" goto end
cls
echo.
echo.Creating ISO file, please wait...
echo.(Your new ISO's will be in: %choice3%)
@for /d %%i in (*.*) do "%choice2%" /mode build /buildmode imagefile /src "%%i\\" /dest "%choice3%\\%%i.iso " /FILESYSTEM "UDF" /UDFREVISION "2.5" /VOLUMELABEL "%%i" /start /CLOSE /NOIMAGEDETAILS /PRESERVEFULLPATHNAMES no /rootfolder yes
:end
echo.
echo.Finished!
echo.
pause
goto EOF
:arcfail
echo.
echo.WARNING: FreeArc returns an error in archive %arc%!
set /p retry=Do you wish to retry [Y/N]:
if /I "%retry%"=="Y" goto %arc:~0,5%
pause
:EOF

This is text in compress .exe
Reply With Quote