Left peek assist

CSGO peek macro using AHK

This feature makes you peek to the left, counter-strafe for a perfect accuracy quick shot and go back right to where you originally were, counter strafing at the end of the movement.

The current feature was made to simulate a quick left peek. However, you can change the delays to achieve a regular peek or a wide peek.

;Peek assist (left)
~o::
SoundPlay, %A_ScriptDir%\sounds\14.mp3
Hotkey, *~$c, Toggle
return
*~$c::

When the toggle hotkey is pressed ( O in this case), the script will play 13.mp3 from the "sounds" folder to inform that the feature is activated. After that, pressing the "C" key will cause you to do a quick peek to the right as described above.

The feature can be toggled on/ off using the hotkey (O in this case). When toggled off, the action of pressing the "C" key in CSGO will not be replaced by the script, leading to the local player doing nothing.

Change "~o" to your desired toggle hotkey ("~X" with "X" representing the key of your choice. For example if you want the toggle key to be the "F" key you replace "~o" with "~f"). Change "C" to your desired activation key. ("*~$X" with "X" representing the key of your choice. For example if you want the activation key to be the "F" key you replace "*~$c" with "*~$f")

Last updated

Was this helpful?