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

32 lines
497 B
Plaintext

void main()
{
object oPC = GetLastKiller();
if (!GetIsPC(oPC)) return;
object oPortal = GetObjectByTag("EntryPortal");
object oSpawn;
object oTarget= oPC;
location lTarget;
object oMod = GetModule ();
int iDead = GetLocalInt(oMod,"gorgona_death");
if (iDead >= 3)
{
DestroyObject(oPortal);
DeleteLocalInt(oMod,"gorgona_death");
GetLocation(oTarget);
oSpawn = CreateObject(OBJECT_TYPE_PLACEABLE, "siblingexit", lTarget);
}
else
{
iDead++;
SetLocalInt(oMod,"gorgona_death",iDead);
}}