PRC8/nwn/nwnprc/trunk/smp/0_wishtest1.nss
Jaysyn904 d87fe14826 Further file organization
Further file organization
2023-08-23 22:11:00 -04:00

19 lines
365 B
Plaintext

void main()
{
SpeakString("CONVERSATION");
object oPC = GetLastSpeaker();
// Repeat the string said
string sSaid = GetMatchedSubstring(0);
SpeakString("CONV. " + GetName(oPC) + " said: " + sSaid);
if(sSaid == "exit")
{
SpeakString("EXIT");
SetPlotFlag(OBJECT_SELF, FALSE);
DestroyObject(OBJECT_SELF);
}
}