ES_PRC8/_module/nss/destroyself.nss
Jaysyn904 08e84b4e71 Initial upload
Initial upload.
2023-11-14 12:09:02 -05:00

22 lines
343 B
Plaintext

void DestroyStuff() {
object oInv = GetFirstItemInInventory(OBJECT_SELF);
while (GetIsObjectValid(oInv) != 0) {
DestroyObject(oInv);
oInv = GetNextItemInInventory(OBJECT_SELF);
}
DestroyObject(OBJECT_SELF);
}
void main()
{
float fTimer = 180.00;
AssignCommand(OBJECT_SELF, DelayCommand(fTimer, DestroyStuff()));
}