52 lines
985 B
Plaintext
52 lines
985 B
Plaintext
/* Script generated by
|
|
Lilac Soul's NWN Script Generator, v. 2.0
|
|
|
|
For download info, please visit:
|
|
http://nwvault.ign.com/View.php?view=Other.Detail&id=4683&id=625 */
|
|
|
|
//Goes OnPerceived of a creature
|
|
void main()
|
|
{
|
|
|
|
object oPC = GetLastPerceived();
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
if (!GetLastPerceptionSeen()) return;
|
|
int DoOnce = GetLocalInt(oPC, GetTag(OBJECT_SELF));
|
|
|
|
if (DoOnce==TRUE) return;
|
|
|
|
ActionSpeakString("STAY AWAY FROM ME FLESHLING !");
|
|
|
|
ActionWait(3.0f);
|
|
|
|
ActionSpeakString("A prince was I, great amongst elves");
|
|
|
|
ActionWait(3.0f);
|
|
|
|
ActionSpeakString("Now stumbling along in the dark");
|
|
|
|
ActionWait(3.0f);
|
|
|
|
ActionSpeakString("Crying in vain, in search of a spark");
|
|
|
|
ActionWait(3.0f);
|
|
|
|
ActionSpeakString("Torment and spirits that shelves.");
|
|
|
|
ActionWait(5.0f);
|
|
|
|
ActionSpeakString("AAAAAIIIiiiiiiiiii");
|
|
|
|
ActionWait(2.0f);
|
|
|
|
ActionJumpToObject(GetObjectByTag("greaterwhisperer2"));
|
|
|
|
ActionWait(120.0f);
|
|
|
|
ActionJumpToObject(GetObjectByTag("greaterwhisperer1"));
|
|
|
|
}
|
|
|