LoD_PRC8/_module/nss/m_onplayerdying.nss
Jaysyn904 94990edc60 Initial Upload
Initial Upload
2023-09-21 21:20:34 -04:00

34 lines
719 B
Plaintext

void dyingeffect(int AmmountToBleed)
{
object oPlayerDying = GetLastPlayerDying();
int CurrentHPs = GetCurrentHitPoints(oPlayerDying);
int toggle = 0;
object Death = GetItemPossessedBy(oPlayerDying, "death");
if(CurrentHPs > 0)
{
toggle = 1;
SetCampaignInt("p_death","is_dead",FALSE,oPlayerDying);
}
if(CurrentHPs <= 0)
{
toggle = 1;
effect KillPlayer = EffectDeath();
ApplyEffectToObject(DURATION_TYPE_INSTANT, KillPlayer, oPlayerDying);
}
if(toggle != 1)
{
DelayCommand(1.0, dyingeffect(1));
}
}
void main()
{
object DyingPerson = GetLastPlayerDying();
SetLocalInt(DyingPerson, "dying", 1);
DelayCommand(1.0, dyingeffect(1));
}