Thread: My Tapper! v1.

Page 1 of 3 123 LastLast
Results 1 to 15 of 41
  1. #1
    -Simply-Own-'s Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    CA Section
    Posts
    2,228
    Reputation
    11
    Thanks
    234
    My Mood
    Amazed

    Arrow My Tapper! v1.

    Hello Guys This Is My First Tapper. v1.
    The Thing That Sucks Is That You Only Have 10-20 Sec To Connect Again Or It The Game Will Crash.
    Credits:
    Me


    Last edited by -Simply-Own-; 04-25-2010 at 07:54 PM.

    Need Help? With Anything? Add Me On Msn.
    simplyown123@hotmail.com



    Made By Me

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


  2. The Following 4 Users Say Thank You to -Simply-Own- For This Useful Post:

    bombsaway (04-25-2010),CRUSTY (04-25-2010),mikey1181 (04-25-2010),nxkun (04-25-2010)

  3. #2
    bombsaway's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    3
    My Mood
    Amazed
    Looks nice, you should add a form name next time tho
    /approved
    wait... i can't -_-

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

    -Simply-Own- (04-25-2010)

  5. #3
    -Simply-Own-'s Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    CA Section
    Posts
    2,228
    Reputation
    11
    Thanks
    234
    My Mood
    Amazed
    Lol Thx,
    I Know Next Time

    Need Help? With Anything? Add Me On Msn.
    simplyown123@hotmail.com



    Made By Me

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


  6. #4
    Villian™'s Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    56
    Reputation
    10
    Thanks
    19
    Hey do you want hot keys for it? I can help you.

  7. #5
    -Simply-Own-'s Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    CA Section
    Posts
    2,228
    Reputation
    11
    Thanks
    234
    My Mood
    Amazed
    Sure^^
    You Will Be Credtited

    Need Help? With Anything? Add Me On Msn.
    simplyown123@hotmail.com



    Made By Me

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


  8. #6
    Villian™'s Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    56
    Reputation
    10
    Thanks
    19
    Ok,First create the buttoon named disconnect and view code.Now go to the top right and it will show the word click in a drop down menu.Click it and click on keydown hen enter this code. (dont put quotations)

    Code:
    If e.keycode=Keys."whatever key u want" Then
              "What you want that key to do.
    For you i would do for your tapper,

    Code:
    If e.keycode=Keys.F6 Then
             Shell("NET STOP DHCP")
    Same for connect but NET START DHCP

  9. The Following User Says Thank You to Villian™ For This Useful Post:

    -Simply-Own- (04-25-2010)

  10. #7
    NOOB's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,843
    Reputation
    425
    Thanks
    8,616
    Quote Originally Posted by Villian™ View Post
    Ok,First create the buttoon named disconnect and view code.Now go to the top right and it will show the word click in a drop down menu.Click it and click on keydown hen enter this code. (dont put quotations)

    Code:
    If e.keycode=Keys."whatever key u want" Then
              "What you want that key to do.
    For you i would do for your tapper,

    Code:
    If e.keycode=Keys.F6 Then
             Shell("NET STOP DHCP")
    Same for connect but NET START DHCP
    It's not global.

  11. #8
    Villian™'s Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    56
    Reputation
    10
    Thanks
    19
    What would be your way noob?

  12. #9
    NOOB's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,843
    Reputation
    425
    Thanks
    8,616
    Quote Originally Posted by Villian™ View Post
    What would be your way noob?
    I personally use RegisterHotkey (since it only gets keyboard input whenever it is pressed rather than running a timer every tenth of a second).

    But GetASyncKeyState is easier to do and does the same thing:

    Code:
    Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer
    Add a timer and add this code:

    Code:
    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
    
            If GetAsyncKeyState(Keys.F1) Then
                     'stuffff
            End If
    
    End Sub
    This code will work even if your playing CA and your tapper is inactive.

  13. #10
    Shark23's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Kansas
    Posts
    424
    Reputation
    10
    Thanks
    55
    My Mood
    Cool
    ^ Not in any private function or sub use
    Code:
    Public Declare Function GetAsyncKeyState  Lib "user32"(ByVal vKey As Long) As Integer
    Then, under a timer function set to an interval of 1
    Code:
    Dim Hotkey1 As Boolean
    Hotkey1 = GetAsyncKeyState(Keys.'Whatever Key)
    If Hotkey1 = True Then
         Shell(NET STOP DHCP)
    End If
    
    Dim Hotkey2 As Boolean
    Hotkey2 = GetAsyncKeyState(Keys.'Whatever Key)
    If Hotkey2 = True Then
         Shell(NET STOP DHCP)
    End If
    Edit: Aw damn. Beat me to it.
    Assembly Programmer

  14. #11
    Villian™'s Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    56
    Reputation
    10
    Thanks
    19
    Oh, now i get it.

  15. #12
    Shark23's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Kansas
    Posts
    424
    Reputation
    10
    Thanks
    55
    My Mood
    Cool
    Check out the VB section more. It's been in there quite a lot...
    Assembly Programmer

  16. #13
    -Simply-Own-'s Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    CA Section
    Posts
    2,228
    Reputation
    11
    Thanks
    234
    My Mood
    Amazed
    Ima check That Out D: ^^

    Need Help? With Anything? Add Me On Msn.
    simplyown123@hotmail.com



    Made By Me

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


  17. #14
    FORCE™'s Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Omg ure a pedaphile
    Posts
    4,225
    Reputation
    69
    Thanks
    667
    My Mood
    Goofy
    umm fix your upload, it has a .frm file lol, idk wat that is


    LIVERPOOL FC


  18. #15
    -Simply-Own-'s Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    CA Section
    Posts
    2,228
    Reputation
    11
    Thanks
    234
    My Mood
    Amazed
    Alright Hold On. . .

    Sendi Im Done Check Now Plz
    Last edited by -Simply-Own-; 04-25-2010 at 07:55 PM.

    Need Help? With Anything? Add Me On Msn.
    simplyown123@hotmail.com



    Made By Me

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


Page 1 of 3 123 LastLast

Similar Threads

  1. Replies: 10
    Last Post: 10-15-2008, 02:14 PM
  2. Tappers used to shut down Ventrilo servers
    By Garrison101 in forum Combat Arms Hacks & Cheats
    Replies: 3
    Last Post: 08-20-2008, 07:19 PM
  3. [Release]100% working tapper program
    By mariokiller64 in forum Combat Arms Hacks & Cheats
    Replies: 12
    Last Post: 08-20-2008, 06:28 PM
  4. Who Needs An Undetected Tapper?
    By GoBxHiTz in forum Combat Arms Hacks & Cheats
    Replies: 18
    Last Post: 08-20-2008, 04:35 PM
  5. Tapper or Smuggle (I need help)
    By xXxEaglexXx in forum General Hacking
    Replies: 1
    Last Post: 08-17-2008, 08:38 PM

Tags for this Thread