the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 28 lines 608 B view raw
1@ECHO OFF 2 3set RULENAME=%1 4cd %RULENAME% 5 6rem set TOOLS=..\..\..\..\..\..\Tools 7 8echo Windows 64 9 10echo Building Localisation... 11%TOOLS%\NewLocalisationPacker --oldFormat Microsoft %CD%\Strings_Win64 %CD%\languages.loc 12 13echo Building Game Rules... 14%TOOLS%\GameRulesPacker -i %CD%\GameRules.xml -o %CD%\ -c zlibrle 15 16echo Building DLC Pack... 17%TOOLS%\DLC_DataCreator2_CL --LittleEndian %CD%\%RULENAME%.xml 18 19rem Return the new tutorial. 20copy %RULENAME%.pck ..\..\%RULENAME%_Windows64.pck 21 22echo Cleaning-up... 23rem del %CD%\languages.loc 24rem del %CD%\GameRules.grf 25rem del %CD%\%RULENAME%.pck 26 27echo Finished. 28cd ..