Lancer AOE Spam with no hurt hands needed. Using autohotkey.
Ok,I wont lie I have been playing the lancer since it came out and wow. I have over 33k damage non buffed with 83k hp. When fully buffed and in my big form I have over 98k damage per swing that's 196k damage with 1 skill. But after a day or 2 of playing it my hand started to cramp up on me. So Iwas like what the hell. I wrote this script to help.
How to use. Install autohotkey from autohotkey.com
After installed make a new script file via right click new>Autohotkey script.
Right click it and hit edit.
Past the code below
Code:
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
~RButton::
while GetKeyState("RButton" ,"P")
{
qstate := GetKeyState("q", "P")
2state := GetKeyState("2", "P")
if (qstate = 1)
{
} Else If (2state = 1)
{
Send {2 down}
sleep 86
Send {2 up}
RandSleep(100, 200)
} Else {
Click Right down
sleep 86
Click Right up
RandSleep(100, 200)
}
}
return
RandSleep(x,y) {
Random, rand, %x%, %y%
Sleep %rand%
}
For this to work you will need to rebind your number 1 skill to your right click. Spear throw does the same damage as your left click so just rebind it to the 1 key.
With the 2 hotkeys swapped places. Time to play
Just hold right click it will spam the right click. Now if you need to use a pot while spaming just hold Q it will stop spaming to use a pot once. If you like to drop your big spear hold the 2key it will spam the 2 key to drop the spear.
Any questions comments please share.