22 lines
639 B
Plaintext
22 lines
639 B
Plaintext
|
/* Script generated by
|
||
|
Lilac Soul's NWN Script Generator, v. 1.6
|
||
|
|
||
|
For download info, please visit:
|
||
|
http://www.lilacsoul.revility.com */
|
||
|
|
||
|
//Goes OnPerceived of a creature
|
||
|
void main()
|
||
|
{
|
||
|
|
||
|
object oPC = GetLastPerceived();
|
||
|
|
||
|
if (!GetIsPC(oPC)) return;
|
||
|
|
||
|
if (!GetLastPerceptionSeen()) return;
|
||
|
DelayCommand(5.0, ActionSpeakString("*chuckles* Last night your father tried that wheel of fortune. Would you belive he won a small plantseed."));
|
||
|
|
||
|
DelayCommand(15.0, ActionSpeakString("*Laughs* I know my dear. Apearently some guest who could not pay sold the wheeler a magical seed from some druids. He is a hopeless dreamer i gues"));
|
||
|
|
||
|
}
|
||
|
|