Files
Anphillia_PRC8/_module/nss/anph_hb_bpack.nss
Jaysyn904 28cdb617b3 Initial commit
Adding all of the current content for Anphillia Unlimited.
2024-01-04 07:49:38 -05:00

22 lines
399 B
Plaintext

//hc_dc_heartbeat
//Archaegeo June 27, 2002
// Called by the Death Corpse itself.
// Deletes the corpse if empty and gives items back if player is alive.
#include "hc_inc"
#include "hc_inc_transfer"
void main()
{
object oDC=OBJECT_SELF;
int i = 0;
object oItem = GetFirstItemInInventory (oDC);
if (oItem != OBJECT_INVALID)
{
return;
}
DestroyObject (oDC);
}