HoS_PRC8/_mod/_module/nss/sacrifice_chb.nss

11 lines
275 B
Plaintext
Raw Normal View History

2024-11-25 19:36:07 -05:00
// sacrifice_chb = chest heartbeat
void main()
{
object oMe=OBJECT_SELF;
object oPC=GetLocalObject(oMe,"oPC");
if (GetArea(oMe)!=GetArea(oPC)||GetDistanceBetween(oMe,oPC)>2.5)
{ // destroy self
ExecuteScript("sacrifice_do",oMe);
} // destroy self
}