Last active
December 3, 2015 05:04
-
-
Save mittorn/574301c65653f567557c to your computer and use it in GitHub Desktop.
cstrike userconfig
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias savequick "buy;hidescores" | |
// Simple toggle example | |
alias loadquick showscores | |
alias showscores "+showscores;alias loadquick hidescores" | |
alias hidescores "-showscores;alias loadquick showscores" | |
// Example of button action replace. Use unalias command to prevent recursive commands. | |
alias +duck toggle_duck | |
// echo does nothing | |
alias -duck echo | |
alias sitdown "unalias +duck;+duck;alias toggle_duck standup; alias +duck toggle_duck" | |
alias standup "unalias -duck;-duck;alias toggle_duck sitdown; alias -duck echo" | |
alias toggle_duck sitdown | |
bind 1 slot1 | |
bind 2 slot2 | |
bind 3 slot3 | |
bind 4 slot4 | |
bind 5 slot5 | |
bind 6 slot6 | |
bind 7 slot7 | |
bind 8 slot8 | |
// slot9 not used in buy menu | |
bind 9 "slot9;messagemode" | |
bind 0 slot10 | |
// Weapon fastswitch (maybe unstable, fps related, need to tune wait count) | |
alias nextweap "unalias invnext;invnext;wait;wait;+attack;wait;wait;wait;-attack; alias invnext nextweap" | |
alias prevweap "unalias invprev;invprev;wait;wait;+attack;wait;wait;wait;-attack; alias invprev prevweap" | |
alias invnext nextweap | |
alias invprev prevweap |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment