Changed folder name.

Changed folder name.
This commit is contained in:
Jaysyn904
2022-10-07 21:08:37 -04:00
parent 1c33c2843e
commit 8d97886c3f
7060 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
//Put this OnEnter
void main()
{
object oPC = GetExitingObject();
object oTarget2 = GetLocalObject(oPC, "Clone");
if (!GetIsPC(oPC)) return;
if (GetIsPC(oPC)&& GetIsDead(oTarget2)) return;
//object oTarget;
//oTarget = GetObjectByTag("Clone", 1);
object oTarget = GetLocalObject(oPC, "Clone");
if (GetIsPC(oPC)&&!GetIsDead(oTarget)){
ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectDeath(), oTarget);
AssignCommand(oPC, SpeakString("Outta bounds, clone<c<>~> dead. "));
DelayCommand(2.0,AssignCommand(oPC, SpeakString(" ")));
// DestroyObject(oTarget, 0.0);
}
}