I have been curious for the code, when you disconnect, and you type in a number in seconds, then it connects in that certain time. So like a Tapper that auto-reconnects.
I have been curious for the code, when you disconnect, and you type in a number in seconds, then it connects in that certain time. So like a Tapper that auto-reconnects.
I'm in Linux atm so I can't pull up VB and throw in some example code, but basically whats going on when you use a tapper is the program is taking control of your active network controller (be it wired or wireless) and shuts it off. After the specified number of seconds it turns it back on. The server reconnects to you, creating the massive lag that allows you to get the crazy kills.
Oh, I misunderstood your post, I thought you were asking how it works.
Sorry.
Okay... Make a Label, textbox, timer, and button.
Add this code:
P.S. Set UAC settings to highest available.Code:Public Class Form1 Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick Label1.Text = Label1.Text + 1 Shell("NET START DHCP", AppWinStyle.Hide) If Label1.Text = TextBox1.Text Then Shell("NET STOP DHCP", AppWinStyle.Hide) Label1.Text = 0 Timer1.Stop() End If End Sub Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Timer1.Start() End Sub End Class
Last edited by Lolland; 12-13-2009 at 11:03 PM.
Nexulous (12-14-2009)