16 lines
328 B
Plaintext
16 lines
328 B
Plaintext
|
void main()
|
||
|
{
|
||
|
|
||
|
object oPC = GetEnteringObject();
|
||
|
|
||
|
if (!GetIsPC(oPC)) return;
|
||
|
|
||
|
|
||
|
|
||
|
FloatingTextStringOnCreature("Moisture hangs in the air and you can feel the slickness", oPC, FALSE);
|
||
|
FloatingTextStringOnCreature("of the steep limestone walls by the glossy green hue on their faces.", oPC, FALSE);
|
||
|
|
||
|
|
||
|
DestroyObject(OBJECT_SELF);
|
||
|
}
|