Ok i am back and in need of some help again please , here is an example :If InStr(1, OriginalSentence, "do you need a drink?") > 0 _
Or InStr(1, OriginalSentence, "are you feeling sick?") > 0 Then
Randomize
Select Case int(rnd()*6)
Case 1
GetResponse = "yeah i do have a lttle bit of a cough"
Case 2
GetResponse = "my throat is kinda feeling a little sore"
Case 3
GetResponse = "yeah can you get me something to drink please"
Case 4
GetResponse = "i hope i am not coming down with something thats all i need is to get sick right now"
Case 5
GetResponse = "i think i just need to get a glass of water to drink"
End Select
HalCommands = "<HAPFILE>female long cough.ogg</HAPFILE>"
HalBrain.ReadOnlyMode = True
End If
what i want to do is add multiple hal commands at the end so that after playing a multiple choice saying hal will then play a multiple random selection of 6 sound effects , can someone tell me how to make the end commmand so it will be multiple choices of sounds please? 