mirror of
https://github.com/nzp-team/assets.git
synced 2024-11-10 06:31:52 +00:00
CTR: Match default.cfg with config.cfg
This commit is contained in:
parent
1562be952b
commit
ce3f8c4950
1 changed files with 98 additions and 95 deletions
|
@ -1,95 +1,98 @@
|
|||
//
|
||||
// load keybindings
|
||||
//
|
||||
// commands with a leading + will also be called for key up events with
|
||||
// the + changed to a -
|
||||
unbindall
|
||||
|
||||
//
|
||||
// character controls
|
||||
//
|
||||
|
||||
bind ALT +strafe
|
||||
|
||||
bind , +moveleft
|
||||
bind . +moveright
|
||||
bind DEL +lookdown
|
||||
bind PGDN +lookup
|
||||
bind END centerview
|
||||
bind z +lookdown
|
||||
bind a +lookup
|
||||
|
||||
bind d +moveup
|
||||
bind c +movedown
|
||||
bind SHIFT +speed
|
||||
bind CTRL +attack
|
||||
bind UPARROW +forward
|
||||
bind DOWNARROW +back
|
||||
bind LEFTARROW +left
|
||||
bind RIGHTARROW +right
|
||||
|
||||
bind SPACE +jump
|
||||
bind ENTER +jump
|
||||
|
||||
bind TAB +showscores
|
||||
|
||||
bind 1 "impulse 1"
|
||||
bind 2 "impulse 2"
|
||||
bind 3 "impulse 3"
|
||||
bind 4 "impulse 4"
|
||||
bind 5 "impulse 5"
|
||||
bind 6 "impulse 6"
|
||||
bind 7 "impulse 7"
|
||||
bind 8 "impulse 8"
|
||||
|
||||
bind 0 "impulse 0"
|
||||
|
||||
bind / "impulse 10" // change weapon
|
||||
|
||||
// zoom
|
||||
alias zoom_in "sensitivity 2;fov 90;wait;fov 70;wait;fov 50;wait;fov 30;wait;fov 10;wait;fov 5;bind F11 zoom_out"
|
||||
alias zoom_out "sensitivity 4;fov 5;wait;fov 10;wait;fov 30;wait;fov 50;wait;fov 70;wait;fov 90;bind F11 zoom_in; sensitivity 3"
|
||||
bind F11 zoom_in
|
||||
|
||||
// Function keys
|
||||
bind F1 "help"
|
||||
bind F2 "menu_save"
|
||||
bind F3 "menu_load"
|
||||
bind F4 "menu_options"
|
||||
bind F5 "menu_multiplayer"
|
||||
bind F6 "echo Quicksaving...; wait; save quick"
|
||||
bind F9 "echo Quickloading...; wait; load quick"
|
||||
bind F10 "quit"
|
||||
bind F12 "screenshot"
|
||||
|
||||
// mouse options
|
||||
|
||||
//
|
||||
// client environment commands
|
||||
//
|
||||
bind PAUSE "pause"
|
||||
bind ESCAPE "togglemenu"
|
||||
bind ~ "toggleconsole"
|
||||
bind ` "toggleconsole"
|
||||
|
||||
bind t "messagemode"
|
||||
|
||||
bind + "sizeup"
|
||||
bind = "sizeup"
|
||||
bind - "sizedown"
|
||||
|
||||
|
||||
//
|
||||
// mouse buttons
|
||||
//
|
||||
bind MOUSE1 +attack
|
||||
bind MOUSE2 +forward
|
||||
|
||||
//
|
||||
// default cvars
|
||||
//
|
||||
viewsize 100
|
||||
gamma 1.0
|
||||
volume 0.7
|
||||
sensitivity 8
|
||||
gl_keeptjunctions 1
|
||||
bind "TAB" "+showscores"
|
||||
bind "SPACE" "+jump"
|
||||
bind "+" "sizeup"
|
||||
bind "T1" "impulse 25"
|
||||
bind "T2" "+jump"
|
||||
bind "T3" "+reload"
|
||||
bind "T4" "+switch"
|
||||
bind "T5" "+knife"
|
||||
bind "," "+moveleft"
|
||||
bind "-" "sizedown"
|
||||
bind "." "+moveright"
|
||||
bind "/" "impulse 10"
|
||||
bind "0" "impulse 0"
|
||||
bind "1" "impulse 1"
|
||||
bind "2" "impulse 2"
|
||||
bind "3" "impulse 3"
|
||||
bind "4" "impulse 4"
|
||||
bind "5" "impulse 5"
|
||||
bind "6" "impulse 6"
|
||||
bind "7" "impulse 7"
|
||||
bind "8" "impulse 8"
|
||||
bind "=" "sizeup"
|
||||
bind "`" "toggleconsole"
|
||||
bind "a" "+lookup"
|
||||
bind "c" "+movedown"
|
||||
bind "d" "+moveup"
|
||||
bind "t" "messagemode"
|
||||
bind "z" "+lookdown"
|
||||
bind "~" "toggleconsole"
|
||||
bind "PADUP" "+grenade"
|
||||
bind "PADDOWN" "impulse 30"
|
||||
bind "PADLEFT" "+reload"
|
||||
bind "PADRIGHT" "+switch"
|
||||
bind "ALT" "+strafe"
|
||||
bind "CTRL" "+attack"
|
||||
bind "SHIFT" "+speed"
|
||||
bind "F1" "help"
|
||||
bind "F2" "menu_save"
|
||||
bind "F3" "menu_load"
|
||||
bind "F4" "menu_options"
|
||||
bind "F5" "menu_multiplayer"
|
||||
bind "F6" "echo Quicksaving...; wait; save quick"
|
||||
bind "F9" "echo Quickloading...; wait; load quick"
|
||||
bind "F10" "quit"
|
||||
bind "F11" "zoom_in"
|
||||
bind "F12" "screenshot"
|
||||
bind "DEL" "+lookdown"
|
||||
bind "PGDN" "+lookup"
|
||||
bind "END" "centerview"
|
||||
bind "MOUSE1" "+attack"
|
||||
bind "MOUSE2" "+forward"
|
||||
bind "ABUTTON" "+moveright"
|
||||
bind "BBUTTON" "+back"
|
||||
bind "XBUTTON" "+forward"
|
||||
binddt "XBUTTON" "+forward %i; impulse 23"
|
||||
binddt "BBUTTON" "+back %i; impulse 30;"
|
||||
bind "YBUTTON" "+moveleft"
|
||||
bind "ZLTRIGGER" "impulse 23"
|
||||
bind "ZRTRIGGER" "+grenade"
|
||||
bind "LTRIGGER" "+aim"
|
||||
bind "RTRIGGER" "+attack"
|
||||
bind "SELECT" "+use"
|
||||
bind "PAUSE" "pause"
|
||||
in_mlook "1"
|
||||
m_side "0"
|
||||
m_forward "0"
|
||||
m_yaw "0"
|
||||
m_pitch "0"
|
||||
acceleration "1.0"
|
||||
tolerance "0.25"
|
||||
sensitivity "8"
|
||||
lookstrafe "0"
|
||||
lookspring "0"
|
||||
_cl_color "0"
|
||||
_cl_name "player"
|
||||
_snd_mixahead "0.1"
|
||||
bgmvolume "0.700000"
|
||||
volume "1.000000"
|
||||
gl_triplebuffer "1"
|
||||
viewsize "120.000000"
|
||||
_config_modem_hangup "AT H"
|
||||
_config_modem_init ""
|
||||
_config_modem_clear "ATZ"
|
||||
_config_modem_dialtype "T"
|
||||
_config_com_modem "1.000000"
|
||||
_config_com_baud "57600.000000"
|
||||
_config_com_irq "4.000000"
|
||||
_config_com_port "1016.000000"
|
||||
gl_subdivide_size "2028"
|
||||
saved4 "0"
|
||||
saved3 "0"
|
||||
saved2 "0"
|
||||
saved1 "0"
|
||||
savedgamecfg "0"
|
||||
gamma "0.7"
|
||||
crosshair "1"
|
||||
sv_maxvelocity "100000"
|
||||
gl_keeptjunctions "1"
|
||||
|
|
Loading…
Reference in a new issue