14 lines
311 B
Plaintext
14 lines
311 B
Plaintext
void main()
|
|
{
|
|
|
|
object oPC = GetEnteringObject();
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
FloatingTextStringOnCreature("Wispy thin as the fog itself, he eerily appears.", oPC, FALSE);
|
|
FloatingTextStringOnCreature("and then disappears, following a trail known only to himself.", oPC, FALSE);
|
|
|
|
DestroyObject(OBJECT_SELF);
|
|
|
|
}
|