32 lines
835 B
Plaintext
32 lines
835 B
Plaintext
/*
|
|
* Script generated by LS Script Generator, v.TK.0
|
|
*
|
|
* For download info, please visit:
|
|
* http://nwvault.ign.com/View.php?view=Other.Detail&id=1502
|
|
*/
|
|
// Put this script OnPerceived (of a creature).
|
|
|
|
|
|
void main()
|
|
{
|
|
// We are only interested in "seen" events.
|
|
if ( !GetLastPerceptionSeen() )
|
|
return;
|
|
|
|
// Get the creature who triggered this event.
|
|
object oPC = GetLastPerceived();
|
|
|
|
// Only fire for (real) PCs.
|
|
if ( !GetIsPC(oPC) || GetIsDMPossessed(oPC) )
|
|
return;
|
|
|
|
// Only fire once per PC.
|
|
if ( GetLocalInt(oPC, "DO_ONCE__" + GetTag(OBJECT_SELF)) )
|
|
return;
|
|
SetLocalInt(oPC, "DO_ONCE__" + GetTag(OBJECT_SELF), TRUE);
|
|
|
|
// Have us say something.
|
|
SpeakString("Alas... If only i had such a majestic flower for her, she would speak with me !");
|
|
}
|
|
|