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’s harbor.", oPC, FALSE);
|
||
|
||
DestroyObject(OBJECT_SELF);
|
||
|
||
}
|