13 lines
341 B
Plaintext
13 lines
341 B
Plaintext
void main()
|
|
{
|
|
|
|
object oPC = GetEnteringObject();
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
FloatingTextStringOnCreature("On one stone cover is the inscription 'Allma, Count Valinor of Lankhmar.'", oPC, FALSE);
|
|
FloatingTextStringOnCreature("The other sarcophagus bears the words, 'Mina, Countess of Valinor.'", oPC, FALSE);
|
|
|
|
DestroyObject(OBJECT_SELF);
|
|
}
|