Lankhmar_PRC8/_module/nss/trashcan.nss
Jaysyn904 ebc0c6a9b2 Initial commit
Initial commit [v9.7]
2025-04-03 12:54:47 -04:00

14 lines
273 B
Plaintext

void main()
{
object oItem;
oItem = GetFirstItemInInventory(OBJECT_SELF);
while(GetIsObjectValid(oItem))
{
SetPlotFlag(oItem,FALSE);
SetIsDestroyable(TRUE,FALSE,FALSE);
DestroyObject(oItem,0.0);
oItem = GetNextItemInInventory(OBJECT_SELF);
}
}