View Poll Results: Do you like the GUI (interface) of my programs?

Voters
28. This poll is closed
  • Yes

    17 60.71%
  • No

    11 39.29%
Page 3 of 5 FirstFirst 12345 LastLast
Results 31 to 45 of 61
  1. #1
    NOOB's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,843
    Reputation
    425
    Thanks
    8,616

    Arrow Combat Arms Tapper - Disconnect and Reconnect on the fly!

    UNDETECTED/UNPATCHABLE AS OF 4/11/10!

    No need for explaining.

    Tutorial:

    YOU MUST RUN AS ADMINISTRATOR!

    Press the key "T" to disconnect from the internet during a game.
    Kill some people...
    Press the key "Y" to reconnect to the internet during a game. (Don't go over 20-30 seconds)
    ???
    PROFIT (You will get kills unless you were killed while tapping)

    Fail-safes:
    When closing, then program will automatically reconnect to the internet.


    Virus Scans of Combat Arms Tapper.ZIP (Compressed Folder).

    VirusTotal

    VirScan

    Virus Scans of Combat Arms Tapper 1.01.ZIP

    VIrScan

    VirusTotal
    Last edited by NOOB; 04-11-2010 at 08:05 AM.

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

    Alby-kun (04-10-2010),h3dsh0tt (04-15-2010),noob555 (04-11-2010),pppdoido1 (10-16-2023),purplenuts (04-17-2010),rfpd (04-11-2010),sniper672 (04-11-2010)

  3. #31
    OnlyToday's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Yeah, I keep getting the cmd.exe popping up and I press Y to disconnect. But when I go back in game the players don't freeze.

  4. #32
    Ninja™'s Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    58
    Reputation
    10
    Thanks
    3
    Nice dude. I made one with VB but i cant get the hot keys to work for mine.Should i count on you for help?

  5. #33
    NOOB's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,843
    Reputation
    425
    Thanks
    8,616
    Quote Originally Posted by Ninja™ View Post
    Nice dude. I made one with VB but i cant get the hot keys to work for mine.Should i count on you for help?
    I don't take credit for this method.

    Under Public Class Form1:

    Code:
    Public Const WM_HOTKEY As Integer = &H312
        Public Declare Function RegisterHotKey Lib "user32" (ByVal hwnd As IntPtr, ByVal id As Integer, ByVal fsModifiers As Integer, ByVal vk As Integer) As Integer
        Public Declare Function UnregisterHotKey Lib "user32" (ByVal hwnd As IntPtr, ByVal id As Integer) As Integer
    Make a button. Then add this:

    Code:
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            Call RegisterHotKey(Me.Handle, 9, 0, Keys.Q)
        End Sub
    Also add:

    Code:
    Private Sub Form1_FormClosing(ByVal sender As System.Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles MyBase.FormClosing
            Call UnregisterHotKey(Me.Handle, 9)
        End Sub
    Lastly, add:

    Code:
    Protected Overrides Sub WndProc(ByRef m As System.Windows.Forms.Message)
            If m.Msg = WM_HOTKEY Then
                'What ever you want the hotkey to do.
            End If
            MyBase.WndProc(m)
        End Sub
    This is better than GetASyncKeyState. Also, this will assign the key 'Q' the hotkey.

  6. #34
    Ninja™'s Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    58
    Reputation
    10
    Thanks
    3
    Thanks.Your going in my sig for helping. xD

    Woosh! Nijato Owned. :P

  7. #35
    NOOB's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,843
    Reputation
    425
    Thanks
    8,616
    I plan to add an auto-reconnect feature in the next version.

    --

    OMG! This is my first release that has ever gotten to the second page.

  8. #36
    Ninja™'s Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    58
    Reputation
    10
    Thanks
    3
    lol, now it's fourth page.Almost fifth.

  9. #37
    -0li's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Nexon Ass, Je Suis Francais :)
    Posts
    217
    Reputation
    10
    Thanks
    34
    My Mood
    In Love
    Dude release the public aimbot ?

  10. #38
    andrew4699's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    44
    Reputation
    10
    Thanks
    9
    My Mood
    Angelic
    Quote Originally Posted by popsingh123 View Post
    u rock now make rapidfire... lol
    that is patched cause the server checks how many bullets u shoot in a few seconds now so ull just dc

  11. #39
    I got ants in my butt, and I needs to strut.
    Premium Seller
    Former Staff
    Premium Member
    Trusted
    Wyo's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Guadalajara
    Posts
    24,113
    Reputation
    4354
    Thanks
    4,203
    My Mood
    Lurking
    Good Job dude = KIU

  12. #40
    User1's Avatar
    Join Date
    Jul 2009
    Gender
    female
    Location
    Above the influence
    Posts
    4,065
    Reputation
    61
    Thanks
    4,294,967,295
    My Mood
    Crappy
    Quote Originally Posted by ᴺᴼᴼᴮ View Post
    I don't take credit for this method.

    Under Public Class Form1:

    Code:
    Public Const WM_HOTKEY As Integer = &H312
        Public Declare Function RegisterHotKey Lib "user32" (ByVal hwnd As IntPtr, ByVal id As Integer, ByVal fsModifiers As Integer, ByVal vk As Integer) As Integer
        Public Declare Function UnregisterHotKey Lib "user32" (ByVal hwnd As IntPtr, ByVal id As Integer) As Integer
    Make a button. Then add this:

    Code:
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            Call RegisterHotKey(Me.Handle, 9, 0, Keys.Q)
        End Sub
    Also add:

    Code:
    Private Sub Form1_FormClosing(ByVal sender As System.Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles MyBase.FormClosing
            Call UnregisterHotKey(Me.Handle, 9)
        End Sub
    Lastly, add:

    Code:
    Protected Overrides Sub WndProc(ByRef m As System.Windows.Forms.Message)
            If m.Msg = WM_HOTKEY Then
                'What ever you want the hotkey to do.
            End If
            MyBase.WndProc(m)
        End Sub
    This is better than GetASyncKeyState. Also, this will assign the key 'Q' the hotkey.
    IMO GetAsyncKeyState is a lot easier or you can use a low level keyboard hook if you have a LOT of hotkeys....
    Any donations would help


    Quote Originally Posted by Bombsaway707

    HOLY SHIT ITS USER1
    Quote Originally Posted by Blood

    HOLY SHIT ITS USER1
    Quote Originally Posted by Alby-kun


    HOLY SHIT ITS USER1
    Quote Originally Posted by Ali

    HOLY SHIT ITS USER1
    Quote Originally Posted by CodeDemon
    HOLY SHIT ITS USER1
    Quote Originally Posted by Jussofresh View Post
    HOLY SHIT ITS USER1!
    [21:13] CoderNever: HOLY SHIT ITS USER1!

  13. #41
    Darcness's Avatar
    Join Date
    Nov 2008
    Gender
    male
    Posts
    47
    Reputation
    10
    Thanks
    3
    It's good besides the fact that it alt tabs out of game to do the disconnect/reconnect =D
    Last edited by Darcness; 04-15-2010 at 02:49 PM.

  14. #42
    topblast's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Far from around you Programmer: C++ | VB | C# | JAVA
    Posts
    3,607
    Reputation
    149
    Thanks
    5,052
    My Mood
    Cool
    Aww it wont work for me (MAMA) NICE WORK
    I just like programming, that is all.

    Current Stuff:

    • GPU Programmer (Cuda)
    • Client/Server (Cloud Server)
    • Mobile App Development

  15. #43
    The_Nightmare's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    In your head....
    Posts
    205
    Reputation
    10
    Thanks
    14
    My Mood
    Dead
    this could be good for anyone not on a laptop or for those who don't want to unplug/plug in there modems everytime. i'm on a laptop so it's gonna be easier to just flip the wi-fi switch but still nice.
    Friendship is kinda like pissing your pants, everyone sees it but only you get that warm feeling.



    Respect lists are for ass kissers that are too lazy to do the job directly.

    Appreciate our coders. If you use their hack then thank them. It's not hard to click the button.

    Thank me if i helped in any way

  16. #44
    ipwedyou's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Location
    street
    Posts
    247
    Reputation
    11
    Thanks
    20
    My Mood
    Amused
    It reduce my game ... is it due to the new today patch ?

  17. #45
    NgoTheGreat's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    484
    Reputation
    10
    Thanks
    58
    My Mood
    Inspired
    Nice, i don't use tapper alot though useless for me. I dont like them tbh. But nice hack i bet many othr will love it. =)

    [NTG]
    ....The Warrior of MPGH....
    [Private Message|Vistor Message]




Page 3 of 5 FirstFirst 12345 LastLast

Similar Threads

  1. combat arms cant conect and the web is not working
    By HaX00R in forum Combat Arms Hacks & Cheats
    Replies: 2
    Last Post: 08-26-2009, 07:19 AM
  2. RE: [ Release] Combat arms:Chams,Nospread and more...
    By eddieg in forum Combat Arms Hacks & Cheats
    Replies: 75
    Last Post: 07-31-2009, 09:35 AM
  3. RE: [ Release] Combat arms:Chams,Nospread and more...
    By eddieg in forum Combat Arms Hacks & Cheats
    Replies: 27
    Last Post: 07-29-2009, 09:57 PM
  4. RE: [ Release] Combat arms:Chams,Nospread and more...
    By eddieg in forum Combat Arms Hacks & Cheats
    Replies: 99
    Last Post: 07-28-2009, 05:49 PM
  5. [Tutorial] Make a Combat Arms Sig (Simple And Quick!)
    By Revolutionaryz in forum Combat Arms Hacks & Cheats
    Replies: 6
    Last Post: 07-25-2009, 10:27 PM