Page 1 of 2 12 LastLast
Results 1 to 15 of 17
  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)

  3. #2
    Invidus's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    2,167
    Reputation
    23
    Thanks
    650
    My Mood
    Bored
    Nice TUT, next time, put code or php tags around code.

  4. The Following User Says Thank You to Invidus For This Useful Post:

    why06 (03-27-2010)

  5. #3
    why06's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    IBM
    Posts
    4,304
    Reputation
    170
    Thanks
    2,204
    My Mood
    Flirty
    Agreed. Go fix it please.

    EDIT: And maybe you should take a look at this... https://www.mpgh.net/forum/161-tutori...-tutorial.html
    Last edited by why06; 03-27-2010 at 07:24 AM.

    "Every gun that is made, every warship launched, every rocket fired signifies, in the final sense, a theft from those who hunger and are not fed, those who are cold and are not clothed. This world in arms is not spending money alone. It is spending the sweat of its laborers, the genius of its scientists, the hopes of its children. The cost of one modern heavy bomber is this: a modern brick school in more than 30 cities. It is two electric power plants, each serving a town of 60,000 population. It is two fine, fully equipped hospitals. It is some fifty miles of concrete pavement. We pay for a single fighter plane with a half million bushels of wheat. We pay for a single destroyer with new homes that could have housed more than 8,000 people. This is, I repeat, the best way of life to be found on the road the world has been taking. This is not a way of life at all, in any true sense. Under the cloud of threatening war, it is humanity hanging from a cross of iron."
    - Dwight D. Eisenhower

  6. #4
    GrImReApEdv2.0's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    In Your Girlfriends Bed......
    Posts
    47
    Reputation
    10
    Thanks
    23
    My Mood
    Hungover
    Sorry Why06 about my other post, and i didnt COPY and PASTE off of THERE thread, I pasted off of my Own project in VB, My .DLL injector i made from hand, so i copy and pasted from my thing

  7. #5
    Spookerzz's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    4,647
    Reputation
    26
    Thanks
    572
    Won't work
    I'm back.

  8. #6
    Invidus's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    2,167
    Reputation
    23
    Thanks
    650
    My Mood
    Bored
    Quote Originally Posted by Godlike View Post
    Won't work
    What errors did you get?

  9. #7
    Spookerzz's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    4,647
    Reputation
    26
    Thanks
    572
    None, Just didn't Dis-Connect the internet.
    I'm back.

  10. #8
    silly3648's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    www.mpgh.net =)
    Posts
    207
    Reputation
    10
    Thanks
    53
    My Mood
    Angelic
    doesn't work for me 15 errors =(
    Computer Science student, College.

    Known Languages: Java, Python
    Learning : C++, C#
    Currently hacking in : C#

    +++LATEST+++
    gimp

    photoshop



    ~HELPFUL CODERS~
    god601
    helicopter12

  11. #9
    DarkFreakXxX's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Philippines
    Posts
    462
    Reputation
    9
    Thanks
    78
    My Mood
    Blah
    Thanks For Your Tapper

  12. #10
    Spookerzz's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    4,647
    Reputation
    26
    Thanks
    572
    It works now.
    I'm back.

  13. #11
    LegendOfPoo's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Behind you
    Posts
    7
    Reputation
    10
    Thanks
    0
    My Mood
    Asleep
    Nice TUT but when i press Disconnect nothing happens

  14. #12
    mikey1181's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    48
    Reputation
    10
    Thanks
    0
    My Mood
    Twisted
    i Get this error when i trade to do it Help?

    --------------------------------------------------------------------------------




    1>LINK : error LNK2001: unresolved external symbol _main
    1>c:\users\guest 2\documents\visual studio 2010\Projects\MY hack\Debug\MY hack.exe : fatal error LNK1120: 1 unresolved external

    someone please help


    My future car



  15. #13
    DayumKen's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Houston, Texas, USA.
    Posts
    130
    Reputation
    10
    Thanks
    46
    My Mood
    Inspired
    How do you set up the hotkey? And it doesn't work for. me. DX Help? I have no errors but Disconnect does nothing. Here's my whole entire code:

    Public Class Form1
    Private Declare Function GetAsyncKeyState Lib "user32.dll" (ByVal vKey As System.Int16)
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    End Sub
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Shell("NET START DHCP")
    End Sub
    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
    Shell("Net STOP DHCP")
    End Sub

    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

  16. #14
    moffat's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    0
    My Mood
    Angry
    nOT WORKING/HELP

  17. #15
    Jimmy VB's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    160
    Reputation
    10
    Thanks
    11
    its to much to take in,not noob friendly,try re-writing or maybe i will somtime!

Page 1 of 2 12 LastLast

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