It currently requires that you are using 1920x1080 resolution and UI scale 1. You can probably adjust the numbers for other resolutions, if you are comfortable modifying the code.
Mouse over the scroll you wish to buy, then press and hold alt-f. Release to stop buying.
Two ways to use:
You can download auto hotkey https://www.autohotkey.com/
Then create a new text document and paste the following code:
Code: Select all
CoordMode, Mouse, Screen
#InstallKeybdHook
#Persistent
!f::
MouseGetPos, x, y
if (x < 150)
{
xoffset = 250
}
else
{
xoffset := x + 100
}
if (y < 150)
{
yoffset = 150
}
else
{
yoffset := y
}
while GetKeyState("f")
{
MouseMove, x, y
Click Right
sleep 30
MouseMove, xoffset, yoffset
Click Right
sleep 30
}
Then run
Or
Download the .exe here
and run as Administrator.
(I know this is scary which is why I posted above code for a safer option)
Let me know if you have any trouble. I could be convinced to make a version for other resolutions, or maybe a generic version.