Alangara_PRC8/_module/nss/bartenderonconvo.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

15 lines
392 B
Plaintext

//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;
}
}