15 lines
240 B
Plaintext
15 lines
240 B
Plaintext
void main()
|
|
{
|
|
|
|
object oPC = GetEnteringObject();
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
|
|
|
|
FloatingTextStringOnCreature("You hear something on the other side of this door. It sounds like a large cat..? .", oPC, FALSE);
|
|
|
|
DestroyObject(OBJECT_SELF);
|
|
|
|
}
|