[Request] AHK script to stop your movement
How this works: he presses W to walk forward, he takes his finger off W and as soon as that happens the script emulates pressing S for a millisecond to get back the first shot accuracy.
Anyone? This would be a really good script. I've seen others try to make it, but I haven't found anyone who has made a working one yet.
F6::Suspend
MButton::
+MButton::
^MButton::
WheelLeft::
WheelRight::
Loop
{
Send W
Send S
Send A
Send D
Sleep 10
Click
If (GetKeyState("MButton","P")=0)
Break
}
Its a little crude, and involves you stopping moving for a fraction of a second, though it works
Press Mouse3 after stopping moving straight away for an instant shot, a variation that automatically stops you, but takes longer is this one
F6::Suspend
MButton::
+MButton::
^MButton::
WheelLeft::
WheelRight::
Loop
{
Send W
Send S
Send A
Send D
Sleep 150
Click
If (GetKeyState("MButton","P")=0)
Break
}
Keep in mind neither of these will work on stairs/slopes