Files
HeroesStone_PRC8/_module/nss/womancry.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -04:00

22 lines
406 B
Plaintext

/* Script generated by
Lilac Soul's NWN Script Generator, v. 1.6
For download info, please visit:
http://www.lilacsoul.revility.com */
//Put this OnEnter
void main()
{
object oPC = GetEnteringObject();
if (!GetIsPC(oPC)) return;
if (!GetIsSkillSuccessful(oPC, SKILL_LISTEN, 12))
return;
SendMessageToPC(oPC, "You can hear the sounds of a woman's cries for help from the cave ahead...");
}