Initial Upload

Initial Upload
This commit is contained in:
Jaysyn904
2023-09-21 21:20:34 -04:00
parent d3f23f8b3c
commit 94990edc60
5734 changed files with 6324648 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
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);
}}