Skip to content

Instantly share code, notes, and snippets.

@DarthParametric
Last active May 31, 2020 12:56
Batch NSS Compile for KOTOR
@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