14 lines
198 B
Plaintext
14 lines
198 B
Plaintext
|
void main()
|
||
|
{
|
||
|
|
||
|
object oPC = GetEnteringObject();
|
||
|
|
||
|
if (!GetIsPC(oPC)) return;
|
||
|
|
||
|
|
||
|
|
||
|
FloatingTextStringOnCreature("The River Hlal must feed into this room..", oPC, FALSE);
|
||
|
|
||
|
DestroyObject(OBJECT_SELF);
|
||
|
}
|