WoR_PRC8/_module/nss/s_cryforhelp.nss

17 lines
321 B
Plaintext
Raw Normal View History

2025-04-03 11:49:34 -04:00
void main()
{
object oPC = GetEnteringObject();
if (!GetIsPC(oPC)) return;
int DoOnce = GetLocalInt(oPC, GetTag(OBJECT_SELF));
if (DoOnce==TRUE) return;
SetLocalInt(oPC, GetTag(OBJECT_SELF), TRUE);
AssignCommand(oPC, SpeakString("You hear hollow whispers and cries for help echo in a surreal gust of wind..."));
}