NWNDS/nwn_dark_sun/dhd_close.nss
Jaysyn904 b01c5cc7db Added PnP Dire Rat.
Added PnP Dire Rat.
2021-07-21 17:48:43 -04:00

23 lines
684 B
Plaintext

//******************************************************************************
//* stargatish portal script put on_close for dhd
//* written by BWW aka Lord Nikon
//* 12/05/04
//* clears runes out of inventory and gets ready for next use
//******************************************************************************
void main()
{
object oItem = GetFirstItemInInventory(OBJECT_SELF);
object oSelf = OBJECT_SELF;
if (oItem == OBJECT_INVALID) return;
while (oItem != OBJECT_INVALID)
{
DestroyObject(oItem);
oItem = GetNextItemInInventory(OBJECT_SELF);
if (oItem == OBJECT_INVALID) break;
}
//SendMessageToPC(GetFirstPC(),"DONE WITH CLOSE SCRIPT");
}