[VB6] Autotalker

tsgh mike

Member
Reputation
0
Intoduction

In this guide I will teach you how to create a undetectable auto talker, for runescape. I will be using Visual Basics 6.

What makes this auto talker undetectable you might ask?

Well, There are 3 lines of text that the user would be able to send to the RS client. Each line should say somthing different or say the same thing but have spelling mistakes.

The auto talker will randomly select a number between 1 and 3. If 1 is randomly chosen then the talker will send the Line1 to the RS client. Same goes with 2 and 3.

Another antiban feature is the random speed interval. The talker will add a randomly selected number between "500" to the speed that the user inputs. This makes sure that the time between messages is always different. Making it harder for Jajex to detect you

Add the following items to a form:
Code:
Text Box - (Name it "Line1")
Text Box - (Name it "Line2")
Text Box - (Name it "Line3")
Text Box - (Name it "Speed")
Label - (Name it "Status")
Command Button - (Name is "Start")
Timmer - (Name it "Timmer1") Set Enabled = False
Have it all set up like this:

Now that you have all the components set up with the correct names its time to code the auto talker.

Code For command Button "start"
Code:
Private Sub Start_Click()
Dim Interval As Integer
Interval = (Rnd * 500)

If Timmer1.Enabled = True Then
    Timmer1.Enabled = False
    Start.Caption = "Start"
Else
    Timmer1.Interval = Speed.Text + Interval
    Timmer1.Enabled = True
    Start.Caption = "Stop"
End If
End Sub
Code for timer "Timmer1"
Code:
Private Sub Timmer1_Timer()
Dim Line As Integer
Dim Interval As Integer
Line = (Rnd * 3)
Interval = (Rnd * 500)

    Timmer1.Interval = Speed.Text + Interval
If Line = 1 Then
    SendKeys Line1.Text & "~"
ElseIf Line = 2 Then
    SendKeys Line2.Text & "~"
ElseIf Line = 3 Then
    SendKeys Line3.Text & "~"
End If

Status.Caption = Timmer1.Interval

End Sub

There we go an undetectable auto talker.
Feel free to play around with my code maybe add some more user interaction features like text effects etc, thanks for reading my tutorial -tsgh mike.
 
Cookies are required to use this site. You must accept them to continue using the site. Learn more…