diff options
| author | Maxxiii <[email protected]> | 2020-09-02 17:56:51 +0300 |
|---|---|---|
| committer | Maxxiii <[email protected]> | 2020-09-02 17:56:51 +0300 |
| commit | 209bbebcdd641d4ad2b53e78478ad68b99501b52 (patch) | |
| tree | d12bdced7c56c86a3750f9b011873a7888dace49 /files/batch-compiler-spec/Zoners_Tools_Normal.bcs | |
| parent | Update README.md (diff) | |
| download | nemstools.github.io-209bbebcdd641d4ad2b53e78478ad68b99501b52.tar.xz nemstools.github.io-209bbebcdd641d4ad2b53e78478ad68b99501b52.zip | |
Add Batch Compiler spec files, update links to them, ...
update some internal links for subpages, fix subpages menu for Batch_Compiler-Tutorials and Terrain_Generator-Tutorials
Diffstat (limited to 'files/batch-compiler-spec/Zoners_Tools_Normal.bcs')
| -rw-r--r-- | files/batch-compiler-spec/Zoners_Tools_Normal.bcs | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/files/batch-compiler-spec/Zoners_Tools_Normal.bcs b/files/batch-compiler-spec/Zoners_Tools_Normal.bcs new file mode 100644 index 0000000..81fae50 --- /dev/null +++ b/files/batch-compiler-spec/Zoners_Tools_Normal.bcs @@ -0,0 +1,64 @@ +// Specification: Zoners Tools Normal +// Written by: Ryan Gregg +// Version: N/A +// Created: August 4, 2004 +// Last updated: September 13, 2005 + +// Updated by: Ryan Gregg +// Date: Febuary 25, 2005 +// Updated ZHLT link. + +// Updated by: Ryan Gregg +// Date: September 13, 2004 +// Improved game execution. + +// Updated by: Ryan Gregg +// Date: August 9, 2004 +// Thanks to: Anders Jenbo +// Removed .RMF file from input file filter. + +Include "Zoners Tools P Series.bci" +Include "Batch.bci" +Include "Half-Life.bci" +Include "Steam.bci" +Include "Templates.bci" + +Batch +{ + Name "Zoners Tools Normal" + Priority "3" + Links "Zoners Tools,http://www.zhlt.info/|"_ + "Steam,http://www.steampowered.com/|"_ + "Valve,http://www.valvesoftware.com/" + Filter "Supported Files|*.map;*.bsp|MAP Files (*.map)|*.map|BSP Files (*.bsp)|*.bsp" + Stages "CSG|BSP|VIS|RAD|RAD2|RipEnt|Shared|Batch|HL|Steam" + LogFile "${FilePath}\\${FileName}.log" + Template "@echo off\n"_ + "set WADROOT=${WADRoot}\n"_ + + "${Splash}"_ + + "\"${StagePath=CSG}\" ${StageParam=CSG} \"${FilePath}\\${FileName}\"\n"_ + "if ERRORLEVEL 1 goto failed\n"_ + "\"${StagePath=BSP}\" ${StageParam=BSP} \"${FilePath}\\${FileName}\"\n"_ + "if ERRORLEVEL 1 goto failed\n"_ + "\"${StagePath=VIS}\" ${StageParam=VIS} \"${FilePath}\\${FileName}\"\n"_ + "if ERRORLEVEL 1 goto failed\n"_ + "\"${StagePath=RAD}\" ${StageParam=RAD} ${StageParam=RAD2} \"${FilePath}\\${FileName}\"\n"_ + "if ERRORLEVEL 1 goto failed\n"_ + "\"${StagePath=RipEnt}\" ${StageParam=RipEnt} \"${FilePath}\\${FileName}\"\n"_ + "if ERRORLEVEL 1 goto failed\n"_ + + "${StageCmd=Batch}\n"_ + "\"${StagePath=hl}\" ${StageParam=hl}\n"_ + "\"${StagePath=Steam}\" ${StageParam=Steam}\n"_ + "goto succeeded\n"_ + + ":failed\n"_ + "echo.\n"_ + "echo There was a problem compiling your map, check your ${FileName}.log file for errors.\n"_ + ":succeeded\n"_ + "echo.\n"_ + + "${LogViewerRun}\n" +}
\ No newline at end of file |