Lankhmar_PRC8/_module/nss/trashcan.nss

14 lines
273 B
Plaintext
Raw Normal View History

2025-04-03 12:54:47 -04:00
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);
}
}