15 lines
254 B
Plaintext
15 lines
254 B
Plaintext
void main()
|
|
{
|
|
|
|
object oPC = GetEnteringObject();
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
|
|
|
|
FloatingTextStringOnCreature("This passageway seems to head out into the river. A large creature could pass through it easily.", oPC, FALSE);
|
|
|
|
DestroyObject(OBJECT_SELF);
|
|
|
|
}
|