Initial Upload

Initial Upload
This commit is contained in:
Jaysyn904
2023-09-21 21:20:34 -04:00
parent d3f23f8b3c
commit 94990edc60
5734 changed files with 6324648 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
void main()
{
int nLine = GetListenPatternNumber();
object oSpeaker = GetLastSpeaker();
object oShaper;
// SpeakString("nLine is" + IntToString(nLine)); //debug
// SpeakString("Speaker is " + GetName(oSpeaker)); //debug
if(nLine == 2020)
{
if (GetLocalInt(oSpeaker, "iShaper") == 1)
{
oShaper = oSpeaker;
string sMessage = GetMatchedSubstring(0);
// SpeakString("Your message is " + sMessage); //debug
SetLocalString(OBJECT_SELF, "sShaperMessage", sMessage);
// SpeakString("ShaperMessage is " + GetLocalString(OBJECT_SELF,"sShaperMessage")); //debug
}
}
}