15 lines
216 B
Plaintext
15 lines
216 B
Plaintext
|
void main()
|
|||
|
{
|
|||
|
|
|||
|
object oPC = GetEnteringObject();
|
|||
|
|
|||
|
if (!GetIsPC(oPC)) return;
|
|||
|
|
|||
|
|
|||
|
|
|||
|
FloatingTextStringOnCreature("This is a deep tunnel that stretches to Lankhmar<61>s harbor.", oPC, FALSE);
|
|||
|
|
|||
|
DestroyObject(OBJECT_SELF);
|
|||
|
|
|||
|
}
|