package script.item.container; import script.dictionary; import script.obj_id; public class supply_crate extends script.base_script { public supply_crate() { } public int OnInitialize(obj_id self) throws InterruptedException { messageTo(self, "handleCleanUp", null, 300.0f, false); return SCRIPT_CONTINUE; } public int OnLostItem(obj_id self, obj_id destContainer, obj_id transferer, obj_id item) throws InterruptedException { int items = getFilledVolume(self); if (items == 0) { messageTo(self, "handleCleanUp", null, 5.0f, false); } return SCRIPT_CONTINUE; } public int OnAboutToReceiveItem(obj_id self, obj_id srcContainer, obj_id transferer, obj_id item) throws InterruptedException { if (isIdValid(transferer)) { return SCRIPT_OVERRIDE; } return SCRIPT_CONTINUE; } public int handleCleanUp(obj_id self, dictionary params) throws InterruptedException { destroyObject(self); return SCRIPT_CONTINUE; } }