Skip to content

Instantly share code, notes, and snippets.

@lioncash
Last active January 25, 2021 05:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lioncash/cdd12f360ca8a1b0f283b8d8eebf0cda to your computer and use it in GitHub Desktop.
Save lioncash/cdd12f360ca8a1b0f283b8d8eebf0cda to your computer and use it in GitHub Desktop.
Binds the fire button to Scroll Wheel Up/Down for no mashing when using the M16
; Usage instructions:
;
; 1. Install AutoHotkey
; 2. Double click on this script
; 3. Check your Windows taskbar and click the up arrow on the far right
; 4. If you see the AutoHotkey logo there, then this script is now active
; (don't forget to close it when you're done playing)
WheelDown::
send {Click}
return
WheelUp::
send {Click}
return
+WheelDown::
send +{Click}
return
+WheelUp::
send +{Click}
return
@Nuggetive
Copy link

I noticed that people stopped running while shooting, waisting massive time slots. Here is some additional code to add the addition of sprinting and shooting:

`+WheelDown::
send +{Click}
return

+WheelUp::
send +{Click}
return`

(If you want to add this code to the original script that would be more than helpful)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment