blob: 040baf9216f93e95b7157e9ec869336b881b2bcd (
plain)
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
|
//
// KEY BINDINGS
//
unbindall
bind - sizedown
bind _ sizedown
bind = sizeup
bind + sizeup
//
// WEAPONS/UPGRADES
//
bind MOUSE1 +attack
bind MOUSE2 +button5
bind [ weapprev
bind ] weapnext
bind mwheelup weapprev
bind mwheeldown weapnext
bind ENTER +button2
bind MOUSE3 +button2
//
// CHARACTER CONTROLS
//
bind CTRL +attack
bind ALT +strafe
bind SHIFT +speed
bind x boost
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
//
// MISC
//
bind t messagemode
bind y messagemode2
bind u messagemode3
bind i messagemode4
bind z +zoom
bind r reload
bind b "buy ammo"
bind m "itemact medkit"
bind q +button7
bind e deconstruct
bind f +button3
bind h scoresUp
bind n scoresDown
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"
//
// DEVELOPER KEYS
//
bind F11 screenshotJPEG
|