Alangara_PRC8/_module/nss/bartenderonconvo.nss

15 lines
392 B
Plaintext
Raw Permalink Normal View History

2024-06-05 21:21:06 -04:00
//Gets pattern and checks to see if its the phrase that has been defined
void main()
{
int pattern = GetListenPatternNumber();
switch(pattern) //Check to see if Correct Answer was recieved
{
case 69:
ActionSpeakString("Gotcha");
ActionWait(6.0);
ActionSpeakString("Rounds Up!!");
break;
}
}