mirror of
https://github.com/Team-Resurgent/Xbox-Softmodding-Tool.git
synced 2026-08-15 11:18:14 -07:00
( They could be played that way before but the image would stay mounted across IGRs ) Updated the bat files to take a user to the Pre-Build version of the files. ( No one except devs or peeps that know what to do should be building the source, and now I need to step in to change that. )
30 lines
980 B
Batchfile
30 lines
980 B
Batchfile
@Echo off & SetLocal EnableDelayedExpansion & Mode con:cols=100 lines=10 & Color 0B
|
|
Title Build XISO
|
|
Set "root=%~dp0"
|
|
|
|
if not exist "..\Other Stuff\dev.bin" Call :Download & Exit
|
|
|
|
Set "SourceDirectory=Extras Disc"
|
|
Set "OutputISOName=Xbox Softmodding Tool Extras Disc.iso"
|
|
|
|
Echo About to create an Xbox ISO.
|
|
Echo:
|
|
Echo Source Directory
|
|
Echo %SourceDirectory%
|
|
Echo:
|
|
Echo Output ISO Name.
|
|
Echo %OutputISOName%
|
|
Timeout /t 3 >NUL
|
|
Call "Build Disc Save.bat"
|
|
"Other\Tools\XDVDFS Tools\bin\windows\xdvdfs_maker.exe" "%SourceDirectory%" "%OutputISOName%"
|
|
RD /Q /S "%SourceDirectory%\Softmod\softmod files\Softmod Files"
|
|
|
|
CD %root%
|
|
:Download
|
|
if not exist "..\Other Stuff\dev.bin" (
|
|
Echo:
|
|
Echo This is intended for people that know what they are doing.
|
|
Echo If you do not please hit enter to be taken to the Pre-Build versions of the files.
|
|
Set /p "tmp="
|
|
start "" https://drive.google.com/drive/folders/1xTpK-VoZX_uzyztk3zdnDaOdEcfOqPJb?usp=sharing
|
|
) |