the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 83 lines 3.1 kB view raw
1SET rootPath=..\ 2 3SET TOOLS_PATH="C:\Program Files (x86)\Microsoft Xbox 360 SDK\bin\win32" 4 5REM overwrite the edb files with the ones with no localisation data 6copy blank_edbs\*.* .\ 7 8if not exist XUR mkdir XUR 9if not exist RESX mkdir RESX 10 11del /Q XUR\*.* 12del /Q RESX\*.* 13del /Q .\Minecraft_all.resx 14 15if not exist .\lcl\de-DE mkdir .\lcl\de-DE 16if not exist .\lcl\es-ES mkdir .\lcl\es-ES 17if not exist .\lcl\fr-FR mkdir .\lcl\fr-FR 18if not exist .\lcl\it-IT mkdir .\lcl\it-IT 19if not exist .\lcl\ja-JP mkdir .\lcl\ja-JP 20if not exist .\lcl\ko-KR mkdir .\lcl\ko-KR 21if not exist .\lcl\pt-BR mkdir .\lcl\pt-BR 22if not exist .\lcl\pt-PT mkdir .\lcl\pt-PT 23if not exist .\lcl\zh-CHT mkdir .\lcl\zh-CHT 24 25if not exist .\lcl\cs-CZ mkdir .\lcl\cs-CZ 26if not exist .\lcl\da-DK mkdir .\lcl\da-DK 27if not exist .\lcl\el-GR mkdir .\lcl\el-GR 28if not exist .\lcl\en-GB mkdir .\lcl\en-GB 29if not exist .\lcl\es-MX mkdir .\lcl\es-MX 30if not exist .\lcl\fi-FI mkdir .\lcl\fi-FI 31if not exist .\lcl\nb-NO mkdir .\lcl\nb-NO 32if not exist .\lcl\nl-BE mkdir .\lcl\nl-BE 33if not exist .\lcl\pl-PL mkdir .\lcl\pl-PL 34if not exist .\lcl\ru-RU mkdir .\lcl\ru-RU 35if not exist .\lcl\sk-SK mkdir .\lcl\sk-SK 36if not exist .\lcl\sv-SE mkdir .\lcl\sv-SE 37if not exist .\lcl\zh-CHS mkdir .\lcl\zh-CHS 38 39for /F "tokens=1,2 delims=." %%A in (..\xuis.txt) DO IF "%%B"=="xui" %TOOLS_PATH%\xui2bin.exe /nologo ..\%%A.xui 40 41for /F "tokens=1,2 delims=." %%A in (..\xuis.txt) DO IF "%%B"=="xui" %TOOLS_PATH%\xui2resx.exe /nologo ..\%%A.xui 42 43for /F "tokens=1,2 delims=." %%A in (..\xuis.txt) DO IF "%%B"=="xui" copy ..\%%A.xur .\XUR\ 44for /F "tokens=1,2 delims=." %%A in (..\xuis.txt) DO IF "%%B"=="xui" copy ..\%%A.resx .\RESX\ 45for /F "tokens=1,2 delims=." %%A in (..\xuis.txt) DO IF "%%B"=="xui" del ..\%%A.xur 46for /F "tokens=1,2 delims=." %%A in (..\xuis.txt) DO IF "%%B"=="xui" del ..\%%A.resx 47 48 49copy ..\..\Common\media\strings.resx .\RESX\ 50copy ..\4JLibs\Media\4J_strings.resx .\RESX\ 51 52REM Game rules 53copy ..\..\Common\res\TitleUpdate\GameRules\BuildOnly\Tutorial\Strings\en-EN.lang .\RESX\Tutorialstrings.resx 54 55%TOOLS_PATH%\resxloc /locstudio .\RESX\*.resx .\Minecraft_all.resx 56 57REM Make sure the loc people haven't made the files read only 58attrib -R .\lcl\de-DE\Minecraft_all.resx 59attrib -R .\lcl\es-ES\Minecraft_all.resx 60attrib -R .\lcl\fr-FR\Minecraft_all.resx 61attrib -R .\lcl\it-IT\Minecraft_all.resx 62attrib -R .\lcl\ja-JP\Minecraft_all.resx 63attrib -R .\lcl\ko-KR\Minecraft_all.resx 64attrib -R .\lcl\pt-BR\Minecraft_all.resx 65attrib -R .\lcl\pt-PT\Minecraft_all.resx 66attrib -R .\lcl\zh-CHT\Minecraft_all.resx 67 68attrib -R .\lcl\cs-CZ\Minecraft_all.resx 69attrib -R .\lcl\da-DK\Minecraft_all.resx 70attrib -R .\lcl\el-GR\Minecraft_all.resx 71attrib -R .\lcl\en-GB\Minecraft_all.resx 72attrib -R .\lcl\es-MX\Minecraft_all.resx 73attrib -R .\lcl\fi-FI\Minecraft_all.resx 74attrib -R .\lcl\nb-NO\Minecraft_all.resx 75attrib -R .\lcl\nl-BE\Minecraft_all.resx 76attrib -R .\lcl\pl-PL\Minecraft_all.resx 77attrib -R .\lcl\ru-RU\Minecraft_all.resx 78attrib -R .\lcl\sk-SK\Minecraft_all.resx 79attrib -R .\lcl\sv-SE\Minecraft_all.resx 80attrib -R .\lcl\zh-CHS\Minecraft_all.resx 81 82pause 83