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