Results 1 to 12 of 12
  1. #1
    Sketchy's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    4,876
    Reputation
    515
    Thanks
    663
    My Mood
    Inspired

    HaxBall Spammer Tool

    Features:
    - Random Character Generation
    - Five Second Delay before Spamming
    - Custom Spamrate
    - Always on Top
    - Start/Stop Buttons
    - Simple and Easy to Use Interface

    Instructions:
    Step One: Type what you want to spam into the textbox.

    Step Two: Choose the speed you want it to spam (Milliseconds)

    Step Three: Press Start.

    Step Four: Click on the text area above the textbox in HaxBall.

    Step Five: Watch the Magic.


    Note: If you put the spamrate low (fast) your cursor may disappear, but no worries, just press CTRL+ALT+DELETE and the spamming will come to a halt, and your cursor will be back.

    Screenshot:


    Video:


    Virus Scans:
    VirusTotal
    Jotti

    Credits:
    - The code for random character generation.
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    The code for the project:
    Code:
    Imports System.Text
    Public Class mainform
        Private Sub CheckBox1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox1.CheckedChanged
            If CheckBox1.Checked = True Then
                Me.TopMost = True
            ElseIf CheckBox1.Checked = False Then
                Me.TopMost = False
            End If
        End Sub
    
        Private Sub btnStart_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnStart.Click
            TimeDelay.Enabled = True
        End Sub
    
        Private Sub btnStop_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnStop.Click
            Timer1.Enabled = False
        End Sub
    
        Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
            Dim rand As New Random
            Dim letter As String
            letter = ChrW(rand.Next(Asc("A"), Asc("Z") + 1))
            SendKeys.Send("{TAB}")
            SendKeys.Send(whattospam.Text)
            SendKeys.Send(" ")
            SendKeys.Send(letter)
            SendKeys.Send("{Enter}")
            Timer1.Interval = timerspeed.Text
        End Sub
    
        Private Sub TimeDelay_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TimeDelay.Tick
            Timer1.Enabled = True
            TimeDelay.Enabled = False
        End Sub
    End Class

    Approve?
    Last edited by Sketchy; 09-01-2011 at 07:19 PM.

  2. The Following 24 Users Say Thank You to Sketchy For This Useful Post:

    Agurr (02-06-2015),anonimo345423 (07-28-2014),atee (09-25-2011),babaz (12-13-2016),bilbosik (01-05-2015),eduardocrb (01-20-2017),GonoLP (05-19-2014),HackerPHC (07-23-2013),Haxiczeu (02-10-2017),Kapeikaa (05-23-2015),knigoush (06-27-2014),LightPies (03-25-2014),maciekzks (05-16-2013),master2121 (11-15-2014),mike12dog (09-11-2011),MrSammyTeee (07-14-2014),qdkyk456 (04-30-2012),R0BS0Ne (10-03-2012),Raamyy (01-18-2017),Sorongoman (01-05-2013),susmf1 (01-10-2017),TheMaldita (04-29-2012),ubra12 (07-27-2013),Wasiak123 (02-12-2017)

  3. #2
    [HP]Unique's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    138
    Reputation
    10
    Thanks
    13
    beatifull,love the font. what game is this for? No,leme guess mapplestory?
    Leecher: 0 ✔
    Choob: 25 ✔
    Newbie: 50 ✖
    Member: 100 ✖
    H4X0R Member: 150 ✖
    Dual-Keyboard Member: 250 ✖
    Expert Member: 500 ✖
    Bobo's Trainer: 750✖
    MPGH Expert: 1000 ✖
    Synthetic Hacker: 1250✖
    Blackhat Hacker: 1500 ✖
    Whitehat Hacker: 2000 ✖
    Bobo's Guardian: 2500 ✖
    Upcoming MPGHiean: 3000 ✖
    MPGH Addict: 3500 ✖
    MPGHiean: 4000 ✖
    MPGH Knight: 4500 ✖
    MPGH Lord: 5000 ✖
    MPGH Champion: 5500 ✖
    MPGH King: 6000 ✖
    MPGH Legend: 6500 ✖
    MPGH God: 7000 ✖
    MPGH God II: 7500 ✖
    MPGH God III: 8000 ✖
    MPGH God IV: 8500 ✖
    MPGH God V: 9000 ✖
    Arun's Slave: 9500 ✖
    Dave's Slave: 10000 ✖

  4. #3
    Nathan's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    In a magical place
    Posts
    6,113
    Reputation
    394
    Thanks
    363
    Quote Originally Posted by [HP]Unique View Post
    beatifull,love the font. what game is this for? No,leme guess mapplestory?
    Well since HaxBall is in the name, I think it's for HaxBall

  5. The Following User Says Thank You to Nathan For This Useful Post:

    Sketchy (09-01-2011)

  6. #4
    Sketchy's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    4,876
    Reputation
    515
    Thanks
    663
    My Mood
    Inspired
    Quote Originally Posted by [HP]Unique View Post
    beatifull,love the font. what game is this for? No,leme guess mapplestory?
    It's for HaxBall.
    But I do have a Maplestory spammer release.
    Sketchy's Maplestory Spammer
    The Maplestory release just doesn't have the TAB Key being automatically pressed.

  7. #5
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Yay.....another spammer.

    Approved.

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  8. #6
    Hassan's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    System.Threading.Tasks
    Posts
    4,764
    Reputation
    495
    Thanks
    2,133
    My Mood
    Dead

    But is step 5 necessary ?

  9. #7
    Sketchy's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    4,876
    Reputation
    515
    Thanks
    663
    My Mood
    Inspired
    Quote Originally Posted by Jason View Post
    Yay.....another spammer.

    Approved.
    Yeah, well this one is special.
    It automatically presses TAB for you.

    I've gotten 6 requests for this spammer today, so I decided I would release it.


    Quote Originally Posted by Hassan View Post

    But is step 5 necessary ?
    It's the most important step.

  10. #8
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,677
    My Mood
    Breezy
    SendKeys makes me Doesn't work on all games.

    And btw, if people don't have that font installed it will appear differently on the computer.
    Donate:
    BTC: 1GEny3y5tsYfw8E8A45upK6PKVAEcUDNv9


    Handy Tools/Hacks:
    Extreme Injector v3.7.3
    A powerful and advanced injector in a simple GUI.
    Can scramble DLLs on injection making them harder to detect and even make detected hacks work again!

    Minion Since: 13th January 2011
    Moderator Since: 6th May 2011
    Global Moderator Since: 29th April 2012
    Super User/Unknown Since: 23rd July 2013
    'Game Hacking' Team Since: 30th July 2013

    --My Art--
    [Roxas - Pixel Art, WIP]
    [Natsu - Drawn]
    [Natsu - Coloured]


    All drawings are coloured using Photoshop.

    --Gifts--
    [Kyle]

  11. #9
    Sketchy's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    4,876
    Reputation
    515
    Thanks
    663
    My Mood
    Inspired
    Quote Originally Posted by master131 View Post
    SendKeys makes me Doesn't work on all games.

    And btw, if people don't have that font installed it will appear differently on the computer.
    SendKeys works for all flashgames.
    It also works for Maplestory.

    About the font...
    Doesn't seem like it.
    I was using it on my mom's laptop and it showed up fine.
    She doesn't have Transformers Movie font installed.
    I might update it later, if people start to complain.
    Last edited by Sketchy; 09-03-2011 at 12:03 AM.

  12. #10
    weberis's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Hello, this is very nice tool Could you make auto-connector ? The program which auto-connects to servers and spam ;D

  13. #11
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Quote Originally Posted by weberis View Post
    Hello, this is very nice tool Could you make auto-connector ? The program which auto-connects to servers and spam ;D
    Holy mother of necro...

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  14. #12
    'Bruno's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Portugal
    Posts
    2,883
    Reputation
    290
    Thanks
    1,036
    My Mood
    Busy
    Holy Jesus Christ. How did you even find this...

    Closed for hugeeee bump. Sorry.
    Light travels faster than sound. That's why most people seem bright until you hear them speak.

Similar Threads

  1. Any CA Spammer Tool?
    By zubni in forum Combat Arms Help
    Replies: 0
    Last Post: 06-30-2011, 03:20 PM
  2. [Detected] LFS Tool (Labyrinth Floor Spammer Tool
    By The_Ku in forum Vindictus Hacks & Cheats
    Replies: 79
    Last Post: 05-01-2011, 11:17 PM
  3. Spammers, Injectors, Multi Tools (Rule Re-call)
    By KING in forum Combat Arms Hacks & Cheats
    Replies: 15
    Last Post: 06-07-2010, 06:09 AM
  4. [Release] MS Tool v4 [Auto Spammer/Clicker/Scroller]
    By Wyo in forum CrossFire Hacks & Cheats
    Replies: 42
    Last Post: 05-02-2010, 05:24 PM
  5. [Release] [BEST]Monster Tool Pack, Afkbot v.2, Freind hack, Texture, CBL, Tapper, Spammer PRO
    By Zoom in forum Combat Arms Hacks & Cheats
    Replies: 102
    Last Post: 12-21-2009, 01:31 AM