[Tool] AutoHotkey scripts

Remember you can always use something like
Tab::Suspend
if you want standard behavior outside combat

you can also make middle button do this thing, I mean
MButton::
[rest of the code the same]

I just remembered why I needed “Machine Gun Left Click” - to pick up stuff on the ground without clicking like a mad man!

Use this code, it will be better for your situation (without “Click, down” in a loop). Cleaner but without machine gun picking up items.

~LButton::
    KeyWait, LButton, T0.2
    if ErrorLevel
    {
        while GetKeyState("LButton", "P")
        {
            Send {7} ;key responsible for Storm Box
            Sleep, 25
        }
    }
Return

Also the sleep time can be longer, like 100 ms insead of 20 ms, in your case. I needed 25 ms for fluent movement in the ‘machine gun’ version but for just casting Storm Box in a loop when left click is hold normally not spammed you can easy get by with 100 - 200 ms I think. Doesn’t make a difference probably, just saying in case some performance problems.