Initial commit. Updated release archive.

This commit is contained in:
Jaysyn904
2024-06-20 15:47:42 -04:00
parent d14b20cb85
commit e49d03aa23
6897 changed files with 6107848 additions and 0 deletions

22
_module/nss/eatham.nss Normal file
View File

@@ -0,0 +1,22 @@
/* Script generated by
Lilac Soul's NWN Script Generator, v. 1.6
For download info, please visit:
http://www.lilacsoul.revility.com */
//Put this on action taken in the conversation editor
void main()
{
object oPC = GetPCSpeaker();
object oItem;
oItem = GetItemPossessedBy(oPC, "NW_IT_MMIDMISC05");
if (GetIsObjectValid(oItem))
DestroyObject(oItem);
CreateItemOnObject("item001", oPC);
}