Lankhmar_PRC8/_module/nss/opn_mh_bld_sk_pc.nss
Jaysyn904 ebc0c6a9b2 Initial commit
Initial commit [v9.7]
2025-04-03 12:54:47 -04:00

23 lines
838 B
Plaintext

void main()
{
// Get the creature who triggered this event.
object oPC = GetLastOpenedBy();
// Only fire once.
if ( GetLocalInt(GetModule(), "DO_ONCE__" + GetTag(OBJECT_SELF)) )
return;
SetLocalInt(GetModule(), "DO_ONCE__" + GetTag(OBJECT_SELF), TRUE);
// Have the PC say something.
AssignCommand(oPC, SpeakString("This former storeroom is now a nightmare of rotting bodies mangled beyond recognition."));
// Have the PC say something.
DelayCommand(3.0, AssignCommand(oPC, SpeakString("Heaped about haphazardly, the corpses are nearly naked and their flesh gashed, seared, and boiled.")));
// Have the PC say something.
DelayCommand(7.0, AssignCommand(oPC, SpeakString("The few inches of unmarred skin remaining on each corpse bear strange symbols branded into the flesh.")));
}