1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
|
//
// KEY BINDINGS
//
unbindall
//
// weapons
//
bind 1 "weapon 1"
bind 2 "weapon 2"
bind 3 "weapon 3"
bind 4 "weapon 4"
bind 5 "weapon 5"
bind 6 "weapon 6"
bind 7 "weapon 7"
bind 8 "weapon 8"
bind 9 "weapon 9"
bind 0 "weapon 10"
bind - "sizedown"
bind _ "sizedown"
bind = "sizeup"
bind + "sizeup"
bind [ weapprev
bind ] weapnext
bind / weapnext
bind \ weapongrabbed
bind ENTER +button2
bind mwheelup weapprev
bind mwheeldown weapnext
//
// CHARACTER CONTROLS
//
bind CTRL +attack
bind ALT +strafe
bind SHIFT +speed
bind DEL +lookdown
bind PGDN +lookup
bind END centerview
bind c +movedown
bind SPACE +moveup
bind UPARROW +forward
bind DOWNARROW +back
bind LEFTARROW +left
bind RIGHTARROW +right
bind w +forward
bind a +moveleft
bind s +back
bind d +moveright
//
// MOUSE OPTIONS
//
bind \ +mlook
//
// CLIENT ENVIRONMENT COMMANDS
//
bind PAUSE "pause"
bind ESCAPE "togglemenu"
bind ~ "toggleconsole"
bind ` "toggleconsole"
bind TAB +scores
bind F1 "vote yes"
bind F2 "vote no"
bind F3 "ui_teamorders"
//
// DEVELOPER KEYS
//
//bind F4 give all
//bind F5 r_speeds 1
//bind F6 r_speeds 0
//bind F7 r_showtris 1
//bind F8 r_showtris 0
//bind F9 noclip
//bind F10 god
bind F11 screenshot
bind t "messagemode"
//
// MOUSE BUTTONS
//
bind MOUSE3 +zoom
bind MOUSE1 +attack
bind MOUSE2 +strafe
//
// UNSUPPORTED CVARS
//
set r_vertexLight 0
set r_intensity 1
|