Last active
May 31, 2020 12:56
-
-
Save DarthParametric/79e9290c2cca6630a4bb08505e2d9530 to your computer and use it in GitHub Desktop.
Batch NSS Compile for KOTOR
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
for %%F in (*.nss) do ( | |
if not "%%~nF"=="nwscript" ( | |
"X:\YOUR_NWNSSCOMP_DIR_HERE\nwnnsscomp.exe" -c "X:\YOUR_INPUT_DIR_HERE\%%~nF.nss" -o "X:\YOUR_OUTPUT_DIR_HERE\%%~nF.ncs" | |
) else ( | |
echo Skipping: %%F | |
) | |
) | |
pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment