
thechezman14
Enthusiast

Dec 30, 2005, 6:18 PM
Post #1 of 11
(4339 views)
Shortcut
|
|
[TUT] Basic Auto-talker
|
Can't Post
|
|
How to make a basic runescape auto-talker 1. Open Visual Basic 6.0 2. Create a new project with 1 form 3. Make 2 Textboxes, 2 CommandButtons & 1 Timer 4. Make the first Textbox say (in the text property) "Your Message here" 5. Make the second Textbox say (in the text property) "7" 6. Make the first commandbox say (in the caption property) "start" 7. Make the first commandbox say (in the caption property) "stop" 8. Put in the code (by double clicking on a button)
Private Sub Command1_Click() 'Makes that the timer is set to what ever's in the second textbox in seconds Timer1.Interval = Text2.Text * 1000 'Starts the timer Timer1.Enabled = True End Sub Private Sub Command2_Click() 'Stops the timer Timer1.Enabled = False End Sub Private Sub Timer1_Timer() 'Works like you quickly type what ever's in the first textbox SendKeys Text1.Text 'Works like you quickly type the enter key SendKeys "{enter}" End Sub 8. Make sure you have these properties
     9. It should look like this
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ will MM for FREE This is 10% luck, 20% skill, 15% concentrated power of will, 5% pleasure, 50% pain, And a 100% reason to remember the name - mike shinoda
|