Initial upload
Initial upload.
This commit is contained in:
13
_module/nss/lot_trashclose.nss
Normal file
13
_module/nss/lot_trashclose.nss
Normal file
@@ -0,0 +1,13 @@
|
||||
void EmptyTrashCan(){
|
||||
object oItem = GetFirstItemInInventory();
|
||||
while(GetIsObjectValid(oItem)){
|
||||
DestroyObject(oItem);
|
||||
oItem = GetNextItemInInventory();
|
||||
}
|
||||
}
|
||||
|
||||
void main(){
|
||||
ClearAllActions();
|
||||
ActionWait(30.0);
|
||||
ActionDoCommand(EmptyTrashCan());
|
||||
}
|
||||
Reference in New Issue
Block a user