the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 78 lines 2.5 kB view raw
1 2:: Copies all files for PS Vita Minecraft 3 4:: PARAM 5:: %1 - Target Dir 6:: %2 - Territory 7 8::Set back level 9pushd . 10cd ..\..\ 11 12::Remove Directories 13if exist %1\%2 rmdir /S /Q %1\%2 14 15:: Create directories 16if not exist %1\%2 mkdir %1\%2 17 18::Copying app files [images etc.] 19xcopy /I /Y /S "PSVita\app" "%1\%2\app" 20 21::Correct Param.sfo depending on territory 22copy "PSVita\app\Region\%2\param.sfo" "%1\%2\app\sce_sys\param.sfo" 23 24::Copy correct livearea xml depending on territory 25::Trial 26copy "PSVita\app\Region\%2\template-trial.xml" "%1\%2\app\sce_sys\livearea\contents\template.xml" 27::Full 28copy "PSVita\app\Region\%2\template.xml" "%1\%2\app\sce_sys\retail\livearea\contents\template.xml" 29 30::Remove Region folder 31rmdir /S /Q %1\%2\app\Region 32 33::Copying Game Files 34::Common - Media 35if not exist %1\%2\app\Common\Media mkdir %1\%2\app\Common\Media 36xcopy /I /Y /S Common\Media\font %1\%2\app\Common\Media\font 37xcopy /I /Y Common\Media\MediaPSVita.arc %1\%2\app\Common\Media\ 38xcopy /I /Y /S Common\res %1\%2\app\Common\res 39::Music 40xcopy /I /Y /S music %1\%2\app\music 41::Sounds 42xcopy /I /Y /S PSVita\Sound %1\%2\app\PSVita\Sound 43::Product codes 44copy ..\PsVitaProductCodes\%2\PSVitaProductCodes.bin %1\%2\app\PSVita\PSVitaProductCodes.bin 45::Invite image 46copy PSVita\session_image.png %1\%2\app\PSVita\session_image.png 47::DLC 48xcopy /I /Y /S PSVita\DLC %1\%2\app\PSVita\DLC 49::Trophy file 50mkdir %1\%2\app\sce_sys\trophy\NPWR06859_00\ 51copy PSVita\GameConfig\Minecraft_signed.trp %1\%2\app\sce_sys\trophy\NPWR06859_00\TROPHY.TRP 52 53:: Manual 54if exist PSVita\app\Region\%2\manual xcopy /I /Y /S PSVita\app\Region\%2\manual %1\%2\app\sce_sys\manual 55 56 57::Removing files 58rmdir /S /Q %1\%2\app\Common\res\TitleUpdate\GameRules\BuildOnly 59rmdir /S /Q %1\%2\app\Common\res\achievement 60rmdir /S /Q %1\%2\app\Common\res\1_2_2\achievement 61 62::Remove Microsoft fonts 63del /F /S /Q %1\%2\app\Common\Media\font\KOR\BOKMSD.ttf 64del /F /S /Q %1\%2\app\Common\Media\font\RU\SpaceMace.ttf 65del /F /S /Q %1\%2\app\Common\Media\font\JPN\DFGMaruGothic-Md.ttf 66del /F /S /Q %1\%2\app\Common\Media\font\CHT\DFHeiMedium-B5.ttf 67 68:: Creating EBOOT.bin 69"%SCE_PSP2_SDK_DIR%\host_tools\build\bin\psp2bin" -i ..\PSVita_ContentPackage\Minecraft.Client.self --strip-all -o %1\%2\app\eboot.bin 70copy ..\PSVita_ContentPackage\Minecraft.Client.self %1\%2\%2.self 71 72::Move the gp4p file 73move /Y %1\%2\app\Minecraft.Client_%2.gp4p %1\%2\Minecraft.Client_%2.gp4p 74 75::End dir 76popd 77 78echo Copied Files for %1 Build