Rune_PRC8/_module/nss/opw_destroyself.nss
Jaysyn904 d1c309ae63 Initial commit
Initial commit
2024-09-13 09:10:39 -04:00

18 lines
490 B
Plaintext

////////////////////////////////////////////////////////////////////////////////
//
// Destroy Self if Empty
// opw_destroyself
// by Don Anderson
// dandersonru@msn.com
//
// Place this on the On Closed Event of whatever will disappear if empty
//
////////////////////////////////////////////////////////////////////////////////
void main()
{
object oSelf = OBJECT_SELF;
object oItem = GetFirstItemInInventory(oSelf);
if(oItem == OBJECT_INVALID) DestroyObject(oSelf,5.0);
}