24 lines
664 B
Plaintext
24 lines
664 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(1.0, ActionSpeakString("I am the Allmighty Knight of Balder, demons die for my hand"));
|
||
|
DelayCommand(15.0, ActionSpeakString("Shredders are no match for me, move aside scums"));
|
||
|
DelayCommand(30.0, ActionSpeakString("I am Lord Marton, defender of Balder"));
|
||
|
DelayCommand(37.0, ActionSpeakString("Beware monsters of the Inner Realms, I am coming now"));
|
||
|
|
||
|
|
||
|
}
|
||
|
|