(adsbygoogle = window.adsbygoogle || []).push({});
Hello NGU, today I bring you an auto-quickscope script. You will need to install AHK (Auto Hot Key) and create a new script. Then just copy and paste the code in, run or compile (then run it) the script and when you right click with the mouse it auto matically quickscopes(it fires for you).
Code:
~Xbutton2::Suspend
Rbutton::
{ GetKeyState, state, Rbutton, T
if state = D
{
send {RButton Down}
sleep 330
MouseClick,left
send {RButton Up}
send {Shift}
sleep 5
send {RButton down}
MouseClick, Right
}
else
{
MouseClick,Right
}
}
-Kyubii