generated from Jaysyn/ModuleTemplate
19 lines
425 B
Plaintext
19 lines
425 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;
|
|
|
|
SendMessageToPC(oPC, "You can feel the definite tingle of a benevolent, soothing presence as you cross the boundary into the grove...not much unlike bathing in a cool stream...");
|
|
|
|
}
|
|
|