Battledale_PRC8/_module/nss/jw_destroyifempt.nss

11 lines
151 B
Plaintext
Raw Permalink Normal View History

void main()
{
object oItem=GetFirstItemInInventory();
if (!GetIsObjectValid(oItem))
{
SetPlotFlag(OBJECT_SELF,FALSE);
DestroyObject(OBJECT_SELF);
}
}