Initial commit
This commit is contained in:
87
autoexec.cfg
Normal file
87
autoexec.cfg
Normal file
@ -0,0 +1,87 @@
|
||||
// Unbind all key bindings and rebind regular keys
|
||||
unbindall
|
||||
exec "binds/all"
|
||||
bind k toggleconsole
|
||||
|
||||
// Jump throw binds
|
||||
alias "+jumpthrow" "+jump;-attack"
|
||||
alias "-jumpthrow" "-jump;"
|
||||
bind SPACE "+jumpthrow"
|
||||
|
||||
// Aliases to switch buying mode
|
||||
alias +buymode "exec binds/drop"
|
||||
alias -buymode "exec binds/buy"
|
||||
|
||||
// Bind to CTRL, together with duck
|
||||
alias +ctrl_action "+duck;+buymode"
|
||||
alias -ctrl_action "-duck;-buymode"
|
||||
bind CTRL +ctrl_action
|
||||
bind RCTRL +ctrl_action
|
||||
|
||||
// Default mode is buy binds
|
||||
exec "binds/buy"
|
||||
|
||||
// Netgraph toggle
|
||||
net_graph 1
|
||||
net_graphheight 9999
|
||||
bind n "toggle net_graphheight 0 9999"
|
||||
|
||||
// Show netgraph with scoreboard
|
||||
alias +scoreboard_netgraph "+showscores; net_graphheight 0"
|
||||
alias -scoreboard_netgraph "-showscores; net_graphheight 9999"
|
||||
bind TAB +scoreboard_netgraph
|
||||
|
||||
// Consistent crouch jump
|
||||
alias +crouch_jump "+duck;+jump"
|
||||
alias -crouch_jump "-duck;-jump"
|
||||
bind c +crouch_jump
|
||||
|
||||
// Bombsites
|
||||
bind LEFTARROW go_a
|
||||
bind RIGHTARROW go_b
|
||||
|
||||
// Ping
|
||||
bind MOUSE3 player_ping
|
||||
bind KP_PLUS +radialradio
|
||||
|
||||
// Switch to bomb and drop
|
||||
bind ALT "use weapon_c4; drop"
|
||||
|
||||
// Set default crosshair
|
||||
alias default_crosshair "exec crosshair/dot"
|
||||
default_crosshair
|
||||
|
||||
// Aliases for fast crosshair switching
|
||||
alias dot "exec crosshair/dot"
|
||||
alias cross "exec crosshair/cross"
|
||||
|
||||
// Switch to lineup crosshair only if E and Mouse 1 is pressed at the same time
|
||||
alias +e_alt_action "+use;exec crosshair/lineup"
|
||||
alias -e_alt_action "-use;default_crosshair"
|
||||
alias +mouse1_action "+attack;bind e +e_alt_action"
|
||||
alias -mouse1_action "-attack;-use;bind e +use; default_crosshair"
|
||||
bind e +use
|
||||
bind MOUSE1 +mouse1_action
|
||||
|
||||
// Aliases for local and remote practice
|
||||
alias localpractice "exec practice/local"
|
||||
alias remotepractice "exec practice/remote"
|
||||
alias lprac "localpractice"
|
||||
alias rprac "remotepractice"
|
||||
alias startrprac "connect 192.168.193.52"
|
||||
|
||||
// Radar settings
|
||||
cl_radar_always_centered 1
|
||||
cl_radar_rotate 1
|
||||
cl_radar_scale 0.445
|
||||
alias +radar_zoom "cl_radar_scale 1.2"
|
||||
alias -radar_zoom "cl_radar_scale 0.445"
|
||||
|
||||
// Mouse thumb button binds
|
||||
alias +mouse_thumb "+buymode; +radar_zoom"
|
||||
alias -mouse_thumb "-buymode; -radar_zoom"
|
||||
bind KP_PGUP "+mouse_thumb"
|
||||
|
||||
// 21:9 safezones
|
||||
safezonex 0.5
|
||||
safezoney 0.9
|
||||
Reference in New Issue
Block a user