BoomBox Chat menu

User Tag List

Thread: BoomBox Chat

Results 1 to 11 of 11
  1. #1
    Professor Banana's Avatar Member
    Reputation
    21
    Join Date
    Apr 2008
    Posts
    102
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    BoomBox Chat

    BoomBox Chat v1.1


    What does it do?
    It will make your character say a phrase you type in every pre-determined amount of time. You also tell it which channel to use. It's options are:
    Say, Yell, Guild, Officer, Emote, 1-9



    I've decided to go back and add a few more things to my old spammer program. I've added 2 things (well, actually more like 3.)

    First of all, it will now add a random amount of time to your delay each time, so each time isnt' exactly the same, thus making it harder to detect.

    Next, it will now check for updates every time it starts. I also had to create a website to get this to work, and it will have all future releases and sources of the program.


    Screenshot:


    Virus scan:
    Virustotal. MD5: 7a865f3a9b1376b495c27a19f3ab7dca Heuristic.BehavesLike.Win32.ModifiedUPX.C!87 Suspicious File
    Written in AutoHotkey, false positives

    Download:
    http://www.autohotkey.net/~uthallan/Downloads.html


    More to come if you guys want it
    Last edited by Professor Banana; 09-23-2009 at 09:50 AM.

    BoomBox Chat
  2. #2
    Barrt73Rus's Avatar Banned
    Reputation
    171
    Join Date
    May 2009
    Posts
    1,272
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Error 403 - Forbidden Screen

  3. #3
    Professor Banana's Avatar Member
    Reputation
    21
    Join Date
    Apr 2008
    Posts
    102
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sorry... fixed the screenshot

  4. #4
    Ponjon's Avatar Member
    Reputation
    66
    Join Date
    Sep 2009
    Posts
    170
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    haha would be usefull if i was a goldspammer anyhow! Thx for sharing it +Rep

  5. #5
    Sel3n's Avatar Member
    Reputation
    10
    Join Date
    Jul 2009
    Posts
    115
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Another fking spammer.

  6. #6
    namelessgnome's Avatar Contributor
    Reputation
    108
    Join Date
    May 2007
    Posts
    263
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I don't see how anyone would use this tbh.

    The program seems to work fine though

  7. #7
    snigelmannen's Avatar Member
    Reputation
    27
    Join Date
    Jul 2007
    Posts
    318
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well id use it for like spamming <Retards from Hell> Are looking for new retarded memebers apply at ble ble ble . wowstead etc etc, instead of spamming a macro. every 5 or 10 min
    " Spy sappin mah sentry! "

  8. #8
    Jadd's Avatar 🐸 Premium Seller
    Reputation
    1515
    Join Date
    May 2008
    Posts
    2,433
    Thanks G/R
    81/336
    Trade Feedback
    1 (100%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Oh geez, this must have been hard to make ;/

    Code:
    #singleinstance force
    #notrayicon
    Gui, Add, Edit, vtext limit256 x6 y10 w240 h90 , Enter the text you want to spam
    Gui, Add, Edit, vfreq number x256 y40 w110 h20, Frequency (In sec)
    Gui, Add, Button, x256 y70 w55 h30 , Start
    Gui, Add, Button, x311 y70 w55 h30 , Stop
    Gui, Add, DropDownList,vchannel x256 y10 w110 h20 r8, Channel||say|yell|guild|officer|emote|1|2|3|4|5|6|7|8|9
    Gui, Show, x385 y490 h105 w371, BoomBox Chat by Professor Banana
    UrlDownloadToFile, http://www.autohotkey.net/~uthallan/update.txt, chatupdate.txt
    FileRead, update, chatupdate.txt
    
    IfNotEqual, update, no updates
    {
    Msgbox, 4,, There is an update. Would you like to download it now? (Yes/No)
    
    IfMsgBox Yes
        run http://www.autohotkey.net/~uthallan/Downloads.html
    
    
    	
    }
    
    
    
    
    
    
    
    
    Return
    
    GuiClose:
    ExitApp
    
    buttonstart:
    Gui, Submit, NoHide
    
    if channel = Channel
    {
    msgbox Please specify a channel
    return
    }
    
    if freq = Frequency (In sec)
    {
    msgbox Please specify a frequency
    return
    }
    
    
    secfreq := freq * 1000
    Gui, Color, FF0000
    more := true
    loop
    {
    if !more
    	break
    controlsend,, /, World of Warcraft
    sleep 75
    controlsend,, %channel%, World of Warcraft
    sleep 50
    controlsend,, {space}, World of Warcraft
    sleep 50
    controlsend,, %text%, World of Warcraft
    sleep 75
    controlsend,, {return}, World of Warcraft
    random, rand, 0, 500
    finalfreq := secfreq + rand
    sleep %finalfreq%
    }
    return
    
    buttonstop:
    more:= false
    Gui, Color, default
    return

  9. #9
    namelessgnome's Avatar Contributor
    Reputation
    108
    Join Date
    May 2007
    Posts
    263
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    While I agree that the creating such an application would be trivial, I think that It is at least contributing.

    Also I'm tired of AHK, Use a real programming language and by that I mean anything but AutoIt

  10. #10
    Professor Banana's Avatar Member
    Reputation
    21
    Join Date
    Apr 2008
    Posts
    102
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I never said it would be hard to make or incredibly complicated.... i made it for people who have no programming experience so they could use it with a nice clean GUI.

    I plan on learning another language when i have the time, this was an old project that I decided to go back and improve.

    Congratulations on finding my source code that i posted on the download page :/

  11. #11
    skunken's Avatar Active Member
    Reputation
    15
    Join Date
    May 2009
    Posts
    116
    Thanks G/R
    20/4
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Professor Banana View Post
    I never said it would be hard to make or incredibly complicated.... i made it for people who have no programming experience so they could use it with a nice clean GUI.

    I plan on learning another language when i have the time, this was an old project that I decided to go back and improve.

    Congratulations on finding my source code that i posted on the download page :/
    Don't care about someones QQ, program works fine thanks ^^

Similar Threads

  1. BoomBox Chat - a program to automate messages
    By Professor Banana in forum World of Warcraft Bots and Programs
    Replies: 13
    Last Post: 03-22-2009, 04:36 PM
  2. Flash chat
    By Ark in forum Suggestions
    Replies: 3
    Last Post: 10-25-2006, 02:27 AM
  3. Xfire chat
    By Glynbeard in forum World of Warcraft General
    Replies: 0
    Last Post: 09-04-2006, 03:23 PM
  4. MMOWNED IRC SERVER/CHat
    By LightWave in forum Community Chat
    Replies: 15
    Last Post: 08-27-2006, 09:06 AM
  5. Understand Opposing Faction Chat (Adanvced)
    By Matt in forum World of Warcraft Exploits
    Replies: 11
    Last Post: 08-09-2006, 02:47 AM
All times are GMT -5. The time now is 06:20 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search