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
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