15 lines
189 B
Plaintext
15 lines
189 B
Plaintext
//Put this script OnExit
|
|
void main()
|
|
{
|
|
|
|
object oPC = GetExitingObject();
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
object oTarget;
|
|
oTarget = GetObjectByTag("stripper");
|
|
|
|
DestroyObject(oTarget, 0.0);
|
|
|
|
}
|