Page 1 of 3 123 LastLast
Results 1 to 15 of 32
  1. #1
    Pixie's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Pixie wird wieder steigen.
    Posts
    1,884
    Reputation
    22
    Thanks
    229
    My Mood
    Fine

    [TUT]Make a spammer w/ hotkeys + ingame message changer + Rndm Char.

    I really don't want to make a tutorial on this, but I have nothing to do right now, so w/e

    First, when you make a new project, name it any thing you want, and add the following:

    2 buttons : For manual start/stop
    3 timers : 1 for hotkeys, 1 for spam, and 1 for ingame message changer
    1 textbox : For the message, and for the text that is recorded

    THE CHECKBOX IS NOT NEEDED!!

    The textbox is like a keylogg, you can manually enter the text yourself, or if you want to change it while ingame, the the third timer will record your message when you press the hotkey.

    I will have what it should look like in the attachments (image)

    Here is the code to put at the top of your form (Above Form1)
    Code:
    Imports System.Text
    Now put this below form1:
    Code:
    Public Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer
    Dim result As Integer
    That's just something for the hotkeys, but if that doesn't work, then try this:
    Code:
    Public Declare Function GetAsyncKeyState Lib "user64" (ByVal vKey As Long) As Integer
    Dim result As Integer
    Now, the hotkeys:

    Add this to timer1 (But make sure Timer1 is enabled!)
    Code:
    If GetAsyncKeyState(Keys.F11) Then
                Timer3.Enabled = True
            End If
            If GetAsyncKeyState(Keys.F6) Then
                Timer2.Enabled = True
                TextBox1.Text = ""
            End If
            If GetAsyncKeyState(Keys.F7) Then
                Timer2.Enabled = False
            End If
    Now add this to Timer2
    Code:
    For i = 1 To 255
                result = 0
                result = GetAsyncKeyState(i)
                If result = -32767 Then
                    TextBox1.Text = TextBox1.Text + Chr(i)
                End If
            Next i
    And finally, timer3:
    Code:
    Dim min = Convert.ToInt32("a"c)
            'Change a to A for Caps
            Dim max = Convert.ToInt32("z"c) + 1
            'Change z to Z for Caps
            Dim rng As New Random
            Dim RndText As New StringBuilder(3)
            For count = 1 To 3
                RndText.Append(Convert.ToChar(rng.Next(min, max)))
            Next
            SendKeys.Send("{enter}")
            SendKeys.Send(TextBox1.Text + " =" & RndText.ToString + "=")
            SendKeys.Send("{enter}")
            Timer3.Enabled = False
    Now, you are done!

    Please post any bugs, and post the error log (If you get one)

    FULL CODE:

    Code:
    Imports System.Text
    Public Class Form1
        Public Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer
        Dim result As Integer
    
        Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
            If GetAsyncKeyState(Keys.F11) Then
                Timer3.Enabled = True
            End If
            If GetAsyncKeyState(Keys.F6) Then
                Timer2.Enabled = True
                TextBox1.Text = ""
            End If
            If GetAsyncKeyState(Keys.F7) Then
                Timer2.Enabled = False
            End If
        End Sub
    
        Private Sub Timer3_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer2.Tick
            For i = 1 To 255
                result = 0
                result = GetAsyncKeyState(i)
                If result = -32767 Then
                    TextBox1.Text = TextBox1.Text + Chr(i)
                End If
            Next i
        End Sub
    
        Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    
        End Sub
    
        Private Sub CheckBox1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox1.CheckedChanged
            If CheckBox1.Checked = True Then
                TextBox1.Visible = True
            Else
                TextBox1.Visible = False
            End If
        End Sub
    
        Private Sub Timer4_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer3.Tick
            Dim min = Convert.ToInt32("a"c)
            'Change a to A for Caps
            Dim max = Convert.ToInt32("z"c) + 1
            'Change z to Z for Caps
            Dim rng As New Random
            Dim RndText As New StringBuilder(3)
            For count = 1 To 3
                RndText.Append(Convert.ToChar(rng.Next(min, max)))
            Next
            SendKeys.Send("{enter}")
            SendKeys.Send(TextBox1.Text + " =" & RndText.ToString + "=")
            SendKeys.Send("{enter}")
            Timer3.Enabled = False
        End Sub
    
        Private Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs)
    
        End Sub
    End Class

  2. The Following 15 Users Say Thank You to Pixie For This Useful Post:

    ĎÁŗҚ ĉҰρҢềŔ (11-11-2009),-=ProUser=- (12-25-2009),-MAJ (07-30-2012),guza44_44 (11-11-2009),hopefordope (01-29-2010),Janitor (04-24-2012),mnpeep (11-30-2009),Nexulous (12-09-2009),Nitehawk772 Bkup (10-10-2011),Sketchy (06-03-2011),SteamAss (04-19-2011),theavengerisback15 (12-01-2009),zouzou.141 (08-07-2012),[MP.GH]Devinet_ (07-06-2010),~Shadow (07-22-2010)

  3. #2

  4. #3
    stevethehacker's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    USA bitch
    Posts
    416
    Reputation
    14
    Thanks
    51
    My Mood
    Bored
    looks ok I guess but there r 2 many of these tutorials.

  5. #4
    Pixie's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Pixie wird wieder steigen.
    Posts
    1,884
    Reputation
    22
    Thanks
    229
    My Mood
    Fine
    Quote Originally Posted by stevethehacker View Post
    looks ok I guess but there r 2 many of these tutorials.
    Yeah but this has a ingame message changer
    Don't see that often do ya?

  6. #5
    stevethehacker's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    USA bitch
    Posts
    416
    Reputation
    14
    Thanks
    51
    My Mood
    Bored
    Quote Originally Posted by PixieCorp View Post
    Yeah but this has a ingame message changer
    Don't see that often do ya?
    I guess not lol thats pretty cool

  7. #6
    Pixie's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Pixie wird wieder steigen.
    Posts
    1,884
    Reputation
    22
    Thanks
    229
    My Mood
    Fine
    Quote Originally Posted by stevethehacker View Post
    I guess not lol thats pretty cool
    Yeah, I was ingame one day with my spammer, and thinking it was so annoying to keep minimizing just to change the message
    So I started to think of a keylogger, and used it for a different purpose

    I am still searching for my old source codes, but I am very busy, but after this week I wont, and I'll probably post a lot of tutorials

  8. #7
    iWAFFLE's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Location
    Houston
    Posts
    704
    Reputation
    10
    Thanks
    38
    My Mood
    Amused
    This may sound stupid,But what do you mean by "Above Form1"

  9. #8
    guza44_44's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Posts
    433
    Reputation
    16
    Thanks
    310
    very sexy xD i like the bright idea keep it up
    [IMG]https://i304.photobucke*****m/albums/nn168/guza44/sig-1.png[/IMG]

  10. #9
    Pixie's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Pixie wird wieder steigen.
    Posts
    1,884
    Reputation
    22
    Thanks
    229
    My Mood
    Fine
    Quote Originally Posted by iWAFFLE View Post
    This may sound stupid,But what do you mean by "Above Form1"
    Where it says Form1
    I would give you a screenshot, but imageshack wont upload

    I will edit the thread and add full source code

  11. #10
    starpwnage's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    39
    Reputation
    10
    Thanks
    3
    My Mood
    Happy
    Intresting, but does it actually work in combat arms?
    I was told that the sendkeys method was patched?

  12. #11
    Zoom's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Your going on my 24/7 DDoS hit list.
    Posts
    8,552
    Reputation
    127
    Thanks
    5,970
    My Mood
    Happy
    Quote Originally Posted by starpwnage View Post
    Intresting, but does it actually work in combat arms?
    I was told that the sendkeys method was patched?
    Only in lobby xP

    P.s Dont dump in old treads ffs!
    -Rest in peace leechers-

    Your PM box is 100% full.

  13. #12
    mnpeep's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    220
    Reputation
    12
    Thanks
    10
    My Mood
    Amazed
    Kewl, i love it.

  14. #13
    Pixie's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Pixie wird wieder steigen.
    Posts
    1,884
    Reputation
    22
    Thanks
    229
    My Mood
    Fine
    Quote Originally Posted by hejsan1 View Post
    Only in lobby xP

    P.s Dont dump in old treads ffs!
    Actually combat arms spammers do work in game, you just have to press the first enter

  15. #14
    Zoom's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Your going on my 24/7 DDoS hit list.
    Posts
    8,552
    Reputation
    127
    Thanks
    5,970
    My Mood
    Happy
    Quote Originally Posted by PixieCorp View Post


    Actually combat arms spammers do work in game, you just have to press the first enter
    Yeah but you cant make it move or press a key
    -Rest in peace leechers-

    Your PM box is 100% full.

  16. #15
    mnpeep's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    220
    Reputation
    12
    Thanks
    10
    My Mood
    Amazed
    mine auto presses enter if you set it, next version wil have double enter.

Page 1 of 3 123 LastLast

Similar Threads

  1. [TUT]Make a spammer in C++.
    By Ionizer in forum Programming Tutorials
    Replies: 13
    Last Post: 11-06-2010, 09:02 PM
  2. SUPER Spammer + hotkeys + ingame message changer
    By hopefordope in forum Combat Arms Spammers, Injectors and Multi Tools
    Replies: 14
    Last Post: 01-30-2010, 05:59 AM
  3. [TUT] Make A Korean WarRock Account
    By castaway in forum WarRock Korea Hacks
    Replies: 185
    Last Post: 12-20-2008, 03:36 AM
  4. [TUT] Making trainer in UCE
    By nabbos in forum WarRock - International Hacks
    Replies: 2
    Last Post: 05-27-2007, 03:18 AM
  5. Jack's Tut-Making Tut
    By Jackal in forum Tutorials
    Replies: 8
    Last Post: 07-15-2006, 01:51 AM

Tags for this Thread