15 lines
213 B
Plaintext
15 lines
213 B
Plaintext
void main()
|
|
{
|
|
|
|
object oPC = GetEnteringObject();
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
|
|
|
|
FloatingTextStringOnCreature("You hear someone calling for help up the north passage.", oPC, FALSE);
|
|
|
|
DestroyObject(OBJECT_SELF);
|
|
|
|
}
|