15 lines
224 B
Plaintext
15 lines
224 B
Plaintext
|
void main()
|
|||
|
{
|
|||
|
|
|||
|
object oPC = GetEnteringObject();
|
|||
|
|
|||
|
if (!GetIsPC(oPC)) return;
|
|||
|
|
|||
|
|
|||
|
|
|||
|
FloatingTextStringOnCreature("This level<65>s rooms and walkways stretch over a giant flooded pool.", oPC, FALSE);
|
|||
|
|
|||
|
DestroyObject(OBJECT_SELF);
|
|||
|
|
|||
|
}
|