the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 19 lines 448 B view raw
1ECHO OFF 2 3set RULENAME=%1 4cd %RULENAME% 5rem set TOOLS=..\..\..\..\..\..\Tools 6 7ECHO "Building Localisation" 8%TOOLS%\NewLocalisationPacker.exe --oldFormat Microsoft %CD%\Strings_Xbox360 %CD%\languages.loc 9 10ECHO "Building Game Rules" 11%TOOLS%\GameRulesPacker -i %CD%\GameRules.xml -o %CD%\ -c lzxrle 12 13ECHO "Building DLC Pack" 14%TOOLS%\DLC_DataCreator2_CL %CD%\%RULENAME%.xml 15 16rem Return the new tutorial. 17copy %RULENAME%.pck ..\..\%RULENAME%.pck 18 19cd ..