Skip to content

Instantly share code, notes, and snippets.

@NicolasBizzozzero
Created April 18, 2020 20:33
Show Gist options
  • Save NicolasBizzozzero/96d6b84db367e68d5e974da84c26ea72 to your computer and use it in GitHub Desktop.
Save NicolasBizzozzero/96d6b84db367e68d5e974da84c26ea72 to your computer and use it in GitHub Desktop.
Counter Strike : Global Offensive config file forcing you to one-tap with weapons
//
// Force you to one tap
// Source: https://www.reddit.com/r/CounterStrikeBinds/comments/922hm2/one_tap_bind/e339uft
//
alias +shootswitch "+attack"
alias -shootswitch "-attack; use weapon_knife; slot1"
alias bindshoot "bind mouse1 +shootswitch"
alias unbindshoot "bind mouse1 +attack"
alias qs1 "slot1; bindshoot"
alias qs2 "slot2; unbindshoot"
alias qs3 "slot3; unbindshoot"
alias qs4 "slot4; unbindshoot"
alias qs5 "slot5; unbindshoot"
alias "onlysometimes1" "bind 1 qs1"
alias "onlysometimes2" "bind 2 qs2"
alias "onlysometimes3" "bind 3 qs3"
alias "onlysometimes4" "bind 4 qs4"
alias "onlysometimes5" "bind 5 qs5"
alias onlysometimes "onlysometimes1; onlysometimes2; onlysometimes3; onlysometimes4; onlysometimes5"
alias "never1" "bind 1 slot1"
alias "never2" "bind 2 slot2"
alias "never3" "bind 3 slot3"
alias "never4" "bind 4 slot4"
alias "never5" "bind 5 slot5"
alias never "never1; never2; never3; never4; never5"
alias mode_onetap_ena "onlysometimes; bind alt mode_onetap_dis"
alias mode_onetap_dis "never; bind alt mode_onetap_ena"
bind alt mode_onetap_ena
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment