PRC8/nwn/nwnprc/trunk/single_compile.bat
Jaysyn904 6ec137a24e Updated AMS marker feats
Updated AMS marker feats.  Removed arcane & divine marker feats.  Updated Dread Necromancer for epic progression. Updated weapon baseitem models.  Updated new weapons for crafting & npc equip.
 Updated prefix.  Updated release archive.
2024-02-11 14:01:05 -05:00

32 lines
938 B
Batchfile

@echo off
SETLOCAL
echo ------------------------------------------------------------------------
echo - This script compiles one file. This allows testing of includes using -
echo - a single script rather than a full compile. -
echo - marked as changed in a later CVS commit. -
echo - -
echo - The directory the script is located in needs to be specified -
echo - relative to the main nwnprc directory eg. scripts\prc_onenter -
echo ------------------------------------------------------------------------
:start
echo Please give the name of the script to compile, without the terminating ".nss".
SET /P target=
tools\nwnnsscomp -cgoq -i include %target%.nss
echo Do you want to compile another file?
SET /P cont=[y/N]
IF NOT %cont%==y GOTO end
SET target=
SET cont=
GOTO start
:end
ENDLOCAL