14 lines
205 B
Plaintext
14 lines
205 B
Plaintext
|
void main()
|
||
|
{
|
||
|
|
||
|
object oPC = GetEnteringObject();
|
||
|
|
||
|
if (!GetIsPC(oPC)) return;
|
||
|
|
||
|
|
||
|
|
||
|
FloatingTextStringOnCreature("You hear voices on the other side of this door..", oPC, FALSE);
|
||
|
|
||
|
DestroyObject(OBJECT_SELF);
|
||
|
}
|