Files
HeroesStone_PRC8/_module/nss/ac_trashcan.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -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);
}
}