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