AutoBomber! (Quel'Danas daily) menu

Shout-Out

User Tag List

Results 1 to 15 of 15
  1. #1
    Yazuak's Avatar Active Member
    Reputation
    123
    Join Date
    Mar 2007
    Posts
    86
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    AutoBomber! (Quel'Danas daily)

    Okay, so there have been lots of posts about the multiple bombings per global cooldown. Well, i decided to make an autoit script that does that for you.

    Basically, it will come up with a window asking you for two things:

    1. Your action bar key that has "Arcane charges" on it - just put in the number. (If you have it bound to something like Shift+H, it wont work; you'll have to move it.)

    2. The key you want to toggle the bombing. When you press this key, the program will bomb and click as fast as it can. Press it again to stop. I use Y because i don't have anything bound to Y.


    I have it uploaded to filebeam, and here is the source code:

    Code:
    #cs ----------------------------------------------------------------------------
    
     AutoIt Version: 3.3.0.0
     Author:         Yazuak
    
     Script Function:
        Template AutoIt script.
    
    #ce ----------------------------------------------------------------------------
    
    ; Script Start - Add your code below here
    
    Global $handle = WinGetHandle("World of Warcraft")
    Global $switch = 0
    Opt("MouseClickDelay",0)
    Opt("SendKeyDelay",0)
    
    func bomb()
        while 1
            if $switch Then
                ControlSend("World of Warcraft", "", $handle, $chargebutton)
                MouseClick("left")
            EndIf
        WEnd
    EndFunc
    
    Func switch1()
        if $switch Then
            $switch = 0
        Else
            $switch = 1
        EndIf
    EndFunc
    
    
    #region --- GuiBuilder code Start ---
    ; Script generated by AutoBuilder 0.6 Prototype
    
    #include <GuiConstants.au3>
    
    GuiCreate("Set button", 241, 100)
    
    $set = GuiCtrlCreateButton("Set", 170, 45, 60, 40)
    $sbutton = GuiCtrlCreateInput("Arcane charges button", 10, 40, 150, 20)
    $hbutton = GuiCtrlCreateInput("Hotkey you wish to set", 10, 70, 150, 20)
    $Label_3 = GuiCtrlCreateLabel("What button is Arcane charges bound to?", 20, 10, 210, 20)
    
    GuiSetState()
    While 1
        $msg = GuiGetMsg()
        Switch $msg
        Case $GUI_EVENT_CLOSE
            ExitLoop
        Case $set
            Global $hkey = GUICtrlRead($hbutton)
            Global $chargebutton = GUICtrlRead($sbutton)
            MsgBox(0,"Set","The hotkey " & $hkey & " has been set.  " & $chargebutton & " is the action bar button for arcane charges."  )
            HotKeySet($hkey,"switch1")
            bomb()
        EndSwitch
    WEnd
    Exit
    #endregion --- GuiBuilder generated code End ---
    Download here
    Also, This will work with the flaming oil or anything other than the arcane charges that would work normally...

    Have fun!
    Last edited by Yazuak; 12-29-2008 at 11:35 AM.

    AutoBomber! (Quel'Danas daily)
  2. #2
    Mewhywhy's Avatar Banned
    Reputation
    19
    Join Date
    May 2008
    Posts
    108
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice share

    Altough i wonder why ppl would need it tough if u put the bomb on a nice keybind u can easly do it without ah well

    remains a nice share

  3. #3
    Yazuak's Avatar Active Member
    Reputation
    123
    Join Date
    Mar 2007
    Posts
    86
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Mewhywhy View Post
    Nice share

    Altough i wonder why ppl would need it tough if u put the bomb on a nice keybind u can easly do it without ah well

    remains a nice share
    You should try the script. I'm not dissing your button mashing skills or anything, but it can probably shoot the bombs faster than you can.

  4. #4
    Saint-Pasdoy's Avatar Banned
    Reputation
    219
    Join Date
    Dec 2006
    Posts
    1,172
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    need to be tested, but nice code

  5. #5
    darkprince11's Avatar Member
    Reputation
    27
    Join Date
    Feb 2008
    Posts
    93
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nice (filler)

  6. #6
    xQzme?'s Avatar Member
    Reputation
    14
    Join Date
    Oct 2007
    Posts
    80
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is autoit bannable?

  7. #7
    blubb12345's Avatar Contributor
    Reputation
    121
    Join Date
    Feb 2007
    Posts
    193
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    here is something similar also with an autoit script (by me :>)
    http://www.mmowned.com/forums/wow-ex...15-autoit.html



    HotKeySet("0","end")
    HotKeySet("9","fire")
    opt("SendKeyDelay",1)
    opt("MouseClickDelay",1)
    Func fire()
    §x=10
    while > 0
    send("1")
    MouseClick("left")
    §x -= 1
    WEnd
    EndFunc
    Func end()
    Exit
    EndFunc
    While 1
    Sleep(1000)
    WEnd


    replace §x = 10 with 1000 eg, it will shoot 1000 times then
    and replace §x with "dollarsymbol"x
    $50 SUBWAY CARD GIVEAWAY >> https://bit.ly/aMbaU5 << LIMITED TIME OFFER

  8. #8
    Cern's Avatar Banned
    Reputation
    146
    Join Date
    Feb 2007
    Posts
    1,038
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice, never saw that before, lets see if i can rep you 3 times <3

  9. #9
    mopyohn's Avatar Member
    Reputation
    12
    Join Date
    Sep 2006
    Posts
    98
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nice job u

  10. #10
    surfsem's Avatar Member
    Reputation
    11
    Join Date
    Jun 2008
    Posts
    105
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    cool fillah
    Hey whats sup Im a wow addict wanna go out some time?

  11. #11
    Morphih's Avatar Member
    Reputation
    30
    Join Date
    Jul 2007
    Posts
    116
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice take some rep for it

  12. #12
    KuddleBear's Avatar Banned
    Reputation
    4
    Join Date
    Jul 2008
    Posts
    30
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    (Nice) Fillz

  13. #13
    finalball's Avatar Active Member
    Reputation
    54
    Join Date
    Jun 2008
    Posts
    187
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nice (Fillerrrr)

  14. #14
    Dwaxine's Avatar Member
    Reputation
    12
    Join Date
    May 2008
    Posts
    118
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Very nice

  15. #15
    motherlandrolf's Avatar Member
    Reputation
    10
    Join Date
    Apr 2008
    Posts
    60
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It's a nice share, but exactly how can this shoot faster than pushing the button you have arcane charges on, and pushing the mousebutton when the GC is down?
    Propably very slim margins, but I'll try it once my 3 day ban is over!

Similar Threads

  1. Isle Quel'Danas Daily Guide (Shattered Sun Offensive)
    By Cun in forum World of Warcraft Guides
    Replies: 5
    Last Post: 10-09-2008, 06:06 PM
  2. [Useless] Quel danas bombing run daily glitch
    By djcrazypants in forum World of Warcraft Exploits
    Replies: 6
    Last Post: 09-18-2008, 08:23 PM
  3. Replies: 5
    Last Post: 06-29-2008, 11:39 AM
  4. [Guide] Quel'Danas dailies.
    By southsidehomie in forum World of Warcraft Guides
    Replies: 25
    Last Post: 05-31-2008, 07:30 AM
  5. Isle Of Quel'Danas 2.4 Exploration :D(DIARY)
    By Premium-mmo in forum World of Warcraft Exploration
    Replies: 4
    Last Post: 02-11-2008, 05:58 AM
All times are GMT -5. The time now is 12:22 AM. 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