Results 1 to 15 of 17

Threaded View

  1. #1
    GrImReApEdv2.0's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    In Your Girlfriends Bed......
    Posts
    47
    Reputation
    10
    Thanks
    23
    My Mood
    Hungover

    Talking [TUT] Simple CA Tapper in VB ( For noobs )

    Hey Mpgh, This is GrImReApEdv2.0 again and here is a tutorial on " HOW TO MAKE A SIMPLE TAPPER " I know there are a bunch of other posts of these but i made this 1 to make them SIMPLER, B/c SOme people are like what code? And all these Dumb Questions so HERE is a Tut for a Tapper!

    1) Open up VB ( 2008/2010 ), Open up a NEW PROJECT....

    2) First of all here is all the things you need in your FORM1.
    2 Buttons: 1= Connect/1=Disconnect
    2 Text Boxes: 1 for Disconnect Hot key, Other for COnnect Hotkey 1 to put your name, so everyone knows you made it on top.
    1 Rich TextBox: 1 to put your name, so everyone knows you made it on top.


    That is what it should have, and should say or if ya wanna get fancy mix it up if ya want.

    3) Double click on the FORM1 name, and here is the coding part, Put this code ABOVE "Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load"
    CODE=

    Private Declare Function GetAsyncKeyState Lib "user32.dll" (ByVal vKey As System.Int16) As Int16 'so its x64 bit compatible
    ( Change user32 to user64, if thats your computer rate )
    Now below the Private Sub Form1 thing, Put:
    End Sub

    4) Now put this code after that
    CODE:

    Code:
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            Shell("NET START DHCP")
        End Sub
    5) That was for The Button1 ( COnnect ) Now button 2 code is:
    Code:

    Code:
    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
            Shell("Net STOP DHCP")
        End Sub
    6) See how it says Shell then net STOP, well its VB language saying when this code clicked or pushed Stop the tapper.
    7) Now get your timer out (1), and double click it and put this code
    CODE:

    Code:
    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
            Dim StartHotkey As Integer
            StartHotkey = GetAsyncKeyState(116)
            If StartHotkey <> 0 Then
                Shell("Net STOP DHCP")
            End If
            Dim StopHotkey As Integer
            StopHotkey = GetAsyncKeyState(117)
            If StopHotkey <> 0 Then
                Shell("NET START DHCP")
            End If
    
        End Sub
    End Class
    This is what the WHOLE code should look like in its Coding page:
    ( Not whole thing just the END sub's and all the lines and there should be nothing underlined = Thats an ERROR )



    PRESS THANKS IF I HELPED!
    Last edited by GrImReApEdv2.0; 03-27-2010 at 08:53 AM. Reason: Mod Told Me To Edit...

  2. The Following 7 Users Say Thank You to GrImReApEdv2.0 For This Useful Post:

    conndrst (05-10-2010),hhhjr1 (07-13-2010),Matrix10 (06-14-2010),OsOxigen (01-05-2014),Rdawg55 (05-04-2010),why06 (03-27-2010),[B]oss (10-02-2011)

Similar Threads

  1. [TUT]How To open Hack inGame for Noobs[TUT]
    By xXcOdXx in forum WarRock Tutorials
    Replies: 8
    Last Post: 10-01-2010, 07:34 AM
  2. [tut for noobs]How to make a boneshot hack with vb
    By atheist in forum WarRock - International Hacks
    Replies: 18
    Last Post: 02-19-2008, 07:20 AM
  3. [tut for noobs] How to make a fast as hack with vb
    By atheist in forum WarRock - International Hacks
    Replies: 19
    Last Post: 02-19-2008, 04:15 AM
  4. [tut for noobs] How to make a invi hack with vb
    By atheist in forum WarRock - International Hacks
    Replies: 14
    Last Post: 02-15-2008, 03:36 AM
  5. [tut for noobs] How to make a anti kick hack with vb
    By atheist in forum WarRock - International Hacks
    Replies: 3
    Last Post: 02-13-2008, 09:17 AM

Tags for this Thread