20 lines
238 B
Plaintext
20 lines
238 B
Plaintext
void main()
|
|
{
|
|
|
|
object oPC = GetLastKiller();
|
|
|
|
while (GetIsObjectValid(GetMaster(oPC)))
|
|
{
|
|
oPC=GetMaster(oPC);
|
|
}
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
object oTarget;
|
|
oTarget = GetObjectByTag("SiblingExit");
|
|
|
|
SetLocked(oTarget, FALSE);
|
|
|
|
}
|
|
|