poopsiedoodle
Gibe moni plos
So, I'm making a bot in VB. And I'm wondering if anyone can confirm that if I have this code:
then it will say what is in textbox1.text on the client that has a player with the name that is shown in combobox2.text, and that when timer1.enabled = false, it will stop saying it?
Code:
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
If ComboBox2.Text = "" Then
MsgBox("please select a player!")
Else
Timer1.Start()
For Each c4 As Client In Client.GetClients
If c4.GetPlayer.Name = ComboBox2.Text And Timer1.Enabled = True Then
c4.Console.Say(TextBox1.Text)
ElseIf Timer1.Enabled = False Then
End If
Next
End If
End Sub
then it will say what is in textbox1.text on the client that has a player with the name that is shown in combobox2.text, and that when timer1.enabled = false, it will stop saying it?