generated from Jaysyn/ModuleTemplate
22 lines
406 B
Plaintext
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...");
|
|
|
|
}
|
|
|