forked from Jaysyn/PRC8
Updated Release Archive
Updated Release Archive. Fixed Mage-killer prereqs. Removed old LETO & ConvoCC related files. Added organized spell scroll store. Fixed Gloura spellbook. Various TLK fixes. Reorganized Repo. Removed invalid user folders. Added DocGen back in.
This commit is contained in:
32
nwn/trunk/single_compile.bat
Normal file
32
nwn/trunk/single_compile.bat
Normal file
@@ -0,0 +1,32 @@
|
||||
@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
|
||||
Reference in New Issue
Block a user