It seems that you're using an outdated browser. Some things may not work as they should (or don't work at all).
We suggest you upgrade newer and better browser like: Chrome, Firefox, Internet Explorer or Opera

×
Are there any working auto clicker tools that work with GOG's Hellfire?
Look for fresh meat blog the Autoclicker download there has V3.1. Sorry I cant post links apparently.
avatar
Thatnerd2049: Look for fresh meat blog the Autoclicker download there has V3.1. Sorry I cant post links apparently.
Did you test it if it works? 3.1 version didn't even work for me with GOG's original Diablo, I had to use Clicker v2, that doesn't seem to be working with Hellfire now...

At least for me...
it is very easy with autohotkey program. save this script as .ahk file, for Hellfire use Hellfire.exe instead of Diablo.exe on line 4.

#NoEnv
SendMode Input
DetectHiddenWindows, On
#IfWinActive ahk_exe Diablo.exe
key = 0 ; Set Key to 0 for initial run

;Autoclicker with Shift
+$LButton::
While GetKeyState("LButton", "P"){
Click
Sleep 200 ; milliseconds
}
Return

;Mouse wheel now scrolls in Griswold's/Adria's/Wirt's.
WheelDown::Down
WheelUp::Up
avatar
svfn: it is very easy with autohotkey program. save this script as .ahk file, for Hellfire use Hellfire.exe instead of Diablo.exe on line 4.

#NoEnv
SendMode Input
DetectHiddenWindows, On
#IfWinActive ahk_exe Diablo.exe
key = 0 ; Set Key to 0 for initial run

;Autoclicker with Shift
+$LButton::
While GetKeyState("LButton", "P"){
Click
Sleep 200 ; milliseconds
}
Return

;Mouse wheel now scrolls in Griswold's/Adria's/Wirt's.
WheelDown::Down
WheelUp::Up
Thanks, I will try it out!

If I understand correctly, autoclick now works when SHIFT is pressed?
avatar
svfn: it is very easy with autohotkey program. save this script as .ahk file, for Hellfire use Hellfire.exe instead of Diablo.exe on line 4.

#NoEnv
SendMode Input
DetectHiddenWindows, On
#IfWinActive ahk_exe Diablo.exe
key = 0 ; Set Key to 0 for initial run

;Autoclicker with Shift
+$LButton::
While GetKeyState("LButton", "P"){
Click
Sleep 200 ; milliseconds
}
Return

;Mouse wheel now scrolls in Griswold's/Adria's/Wirt's.
WheelDown::Down
WheelUp::Up
avatar
keeveek: Thanks, I will try it out!

If I understand correctly, autoclick now works when SHIFT is pressed?
yeah according to the script. found it sometime ago on reddit.

there's also while holding LMB only, but it causes issues with Torch mod (putting items in stash), fine if you don't use it.

;Autoclicker when holding only
~$LButton::
While GetKeyState("LButton", "P"){
Click
Sleep 200 ; milliseconds
}
;Return
Post edited June 06, 2019 by svfn