Skip to content

Instantly share code, notes, and snippets.

@Glaived
Last active April 18, 2020 12:44
Show Gist options
  • Save Glaived/9d8ab68aab1e9cb84519dfd0ff81079f to your computer and use it in GitHub Desktop.
Save Glaived/9d8ab68aab1e9cb84519dfd0ff81079f to your computer and use it in GitHub Desktop.
AutoHotKey snippet for Valorant :. Take cut toggle
#if WinActive("ahk_exe VALORANT-Win64-Shipping.exe")
*XButton1:: ; Choose your key
if (cut) {
send 2 ; Take the pistol if there's no main weapon.
send 1
} else {
send 3
}
cut := !cut
return
~WheelDown::
~WheelUp::
~&:: ; Key (1) above qwerty, currently on azerty. Check that these keys match for a qwerty keyboard.
~SC003:: ; Key (2) above qwerty, currently on azerty. Check that these keys match for a qwerty keyboard.
#MaxHotkeysPerInterval 400
cut := false
return
#if
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment