15 lines
249 B
Plaintext
15 lines
249 B
Plaintext
|
void main()
|
||
|
{
|
||
|
|
||
|
object oPC = GetEnteringObject();
|
||
|
|
||
|
if (!GetIsPC(oPC)) return;
|
||
|
|
||
|
|
||
|
|
||
|
FloatingTextStringOnCreature("The brackish water and dying aquatic life permeate the area with the smell of rotting fish.", oPC, FALSE);
|
||
|
|
||
|
DestroyObject(OBJECT_SELF);
|
||
|
|
||
|
}
|