17 lines
394 B
Plaintext
17 lines
394 B
Plaintext
void main()
|
|
{
|
|
|
|
object oPC = GetEnteringObject();
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
|
|
|
|
FloatingTextStringOnCreature("In a clearing to the south sits several tents.", oPC, FALSE);
|
|
FloatingTextStringOnCreature("Watching, you see four people.", oPC, FALSE);
|
|
FloatingTextStringOnCreature("A middle-aged couple, an elderly man, and an attractive young woman.", oPC, FALSE);
|
|
|
|
DestroyObject(OBJECT_SELF);
|
|
|
|
}
|