LoT_PRC8/_module/nss/lot_trashclose.nss
Jaysyn904 ec287507a1 Initial upload
Initial upload.
2023-09-25 21:32:17 -04:00

13 lines
282 B
Plaintext

void EmptyTrashCan(){
object oItem = GetFirstItemInInventory();
while(GetIsObjectValid(oItem)){
DestroyObject(oItem);
oItem = GetNextItemInInventory();
}
}
void main(){
ClearAllActions();
ActionWait(30.0);
ActionDoCommand(EmptyTrashCan());
}