View Single Post
  #26  
Old 11-12-2019, 07:44
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,689
Thanks: 1,106
Thanked 7,336 Times in 2,838 Posts
KaktoR is on a distinguished road
It works, but you have to adjust Data2 sizes and move command for Data2 then.

Edit: Replace this inside the batch

Code:
:LangChoice1
cls
echo.
echo.--------------------------------------------------------------------
echo.Which language you did want to use? 
echo.--------------------------------------------------------------------
echo. 0=Keep all languages^^!
echo. 1=English
echo. 2=French
echo. 3=German
echo.

set /p langchoice=
if "%langchoice%"=="" goto LangChoice1
if "%langchoice%"=="0" goto NoHDData
if "%langchoice%"=="1" goto English
if "%langchoice%"=="2" goto French
if "%langchoice%"=="3" goto German
However, you have to edit this part too

Code:
if "!hdcontent1!"=="false" (
	move .\Output\Data2.bin.001 "Output\%GameName% DVD7"
)

if "!hdcontent1!"=="true" (
	mkdir ".\Output\%GameName% DVD9"
	move .\Output\Data2.bin.001 "Output\%GameName% DVD8"
	move .\Output\Data2.bin.002 "Output\%GameName% DVD9"
	if exist "Output\Data2.bin.003" (
		mkdir ".\Output\%GameName% DVD10"
		move .\Output\Data2.bin.003 "Output\%GameName% DVD10"
		xcopy /e /i /y /q "%choice%\_CommonRedist" ".\Output\%GameName% DVD10\_CommonRedist" >nul 2>&1
	)
)
I would say just compress the thing and look how many Data2 archives you have and edit the move commands + make new folders for each disk.
__________________
Haters gonna hate

Last edited by KaktoR; 11-12-2019 at 07:50.
Reply With Quote
The Following 2 Users Say Thank You to KaktoR For This Useful Post:
Simorq (11-12-2019), wit (11-12-2019)