Vb8 Auto ________
Hey everyone... i thought i would just make a tutorial on how to make something like an auto glitcher, pistol, jumper, etc.
This is a very simple tut using SendKeys and may not always work.
Here we go.
1. Create a new windows application in Vb
2. Add 2 Buttons. Name button1 "Start" and button2 "Stop"
3. Add 2 Timers
4. Open up your form1 code and under Public Class Form1 enter this code:
5. Now go back to the form1 design and double click on timer2 (This is your hotkeys) Put this code in timer2
6. Once again... go back to form1 design and double click on timer1 (This is your auto __________ code.
For example: If you want to do an auto glitcher its simply
If you want to do an auto jumper its a bit more work. (Not much more)
And then from there you can make just about anything "Auto" by using sendkeys.
Note: Some things like holding Shift require more coding but this is just a basic tutorail.
Hope you had fun. If you learned anything thank me.
This is a very simple tut using SendKeys and may not always work.
Here we go.
1. Create a new windows application in Vb
2. Add 2 Buttons. Name button1 "Start" and button2 "Stop"
3. Add 2 Timers
4. Open up your form1 code and under Public Class Form1 enter this code:
Code:
Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vkey As Long) As Integer ' this simply tells the computer what GetAsyncKeyState means
Code:
Dim hotkey1 As Boolean
hotkey1 = GetAsyncKeyState(Keys.F11)
If hotkey1 = True Then
Timer1.Interval = 100
Timer1.Enabled = True
Timer1.Start()
End If
Dim hotkey2 As Boolean
hotkey2 = GetAsyncKeyState(Keys.F12)
If hotkey2 = True Then
Timer1.Enabled = False
Timer1.Stop()
End If
For example: If you want to do an auto glitcher its simply
Code:
SendKeys.Send("wswswswssswwwswswswswssswwwswswsws")
SendKeys.Send("wswswswssswwwswswswswssswwwswswsws")
SendKeys.Send("wswswswssswwwswswswswssswwwswswsws")
Code:
SendKeys.Send("" + Space(5))
Sendkeys.Send("" + Space(5))
Sendkeys.Send("" + Space(5))
Note: Some things like holding Shift require more coding but this is just a basic tutorail.
Hope you had fun. If you learned anything thank me.



plz help
No but VB is fucking simple shit. If you can't do shit with VB you might as well stop, and if you want a job as a programmer you better not look at that goal as one you'll reach. Have fun!