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!