blob: d9b6617747ff694300c59d897e118c5b083cceb3 (
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
unbindall
// Menu
bind scancode41 "cancelselect" // US English key name "ESCAPE"
bind scancode57 "cancelselect" // US English key name "CAPSLOCK"
bind scancode53 "toggleconsole" // US English key name "`"
bind scancode43 "+showscores" // US English key name "TAB"
bind scancode226 "+bind_alt" // US English key name "ALT"
// Movement
bind scancode4 "+left" // US English key name "a"
bind scancode26 "+forward" // US English key name "w"
bind scancode22 "+back" // US English key name "s"
bind scancode7 "+right" // US English key name "d"
bind "MOUSE_X" "yaw"
bind "MOUSE_Y" "pitch"
bind "MOUSE1" "+attack"
bind "MOUSE2" "+attack2"
bind scancode44 "+jump" // US English key name "SPACE"
bind scancode224 "+duck" // US English key name "CTRL"
bind scancode225 "+sprint" // US English key name "SHIFT"
bind "MWHEELDOWN" "+jump"
bind "MWHEELUP" ""
bind scancode20 "lastinv" // US English key name "q"
bind scancode21 "+reload" // US English key name "r"
bind scancode13 "+spray_menu" // US English key name "j"
bind scancode10 "drop" // US English key name "g"
// Slots
bind scancode54 "buyammo1" // US English key name ","
bind scancode55 "buyammo2" // US English key name "."
bind scancode39 "slot10" // US English key name "0"
bind scancode30 "slot1" // US English key name "1"
bind scancode31 "slot2" // US English key name "2"
bind scancode32 "slot3" // US English key name "3"
bind scancode33 "slot4" // US English key name "4"
bind scancode34 "slot5" // US English key name "5"
bind scancode35 "slot6" // US English key name "6"
bind scancode36 "slot7" // US English key name "7"
bind scancode37 "slot8" // US English key name "8"
bind scancode38 "slot9" // US English key name "9"
// Direct grenade access
bind scancode29 "slot8" // US English key name "z"
bind scancode27 "slot7" // US English key name "x"
bind scancode6 "slot6" // US English key name "c"
bind scancode25 "slot10" // US English key name "v"
bind scancode23 "+drop_bomb" // US English key name "t"
// Functionality
bind scancode5 "buymenu" // US English key name "b"
bind scancode8 "+use" // US English key name "e"
bind scancode9 "player_ping" // US English key name "f"
bind scancode12 "show_loadout_toggle" // US English key name "i"
bind scancode16 "teammenu" // US English key name "m"
bind scancode24 "messagemode2" // US English key name "u"
bind scancode28 "messagemode" // US English key name "y"
// bind "z" "radio"
// bind "v" "+radialradio2"
bind "MOUSE3" "compliment"
bind "MOUSE4" "+voicerecord"
bind "MOUSE5" "toggle cl_crosshair_recoil"
// Buymenu
// bind "F1" "buy taser;"
// bind "F2" "buy fn57;"
// bind "F3" "buy deagle;"
// bind "F4" "buy p250;"
// bind "F5" "buy m4a1;"
// bind "F6" "buy aug;"
// bind "F7" "buy famas;"
bind scancode65 "say reported!" // US English key name "F8"
// bind F8 "mat_setvideomode 1024 768 0"
bind scancode66 "say Hi :3" // US English key name "F9"
// bind F9 "mat_setvideomode 1920 1080 0"
// bind "F10" "buy g3sg1; buy scar20"
// bind "F11" "buy ssg08;"
// bind "F12" "buy awp;"
// bind "INS" "+radialradio"
// bind "HOME" "+radialradio2"
// bind "PGUP" "+radialradio3"
// bind "kp_1" "buy nova;"
// bind "kp_2" "buy xm1014;"
// bind "kp_3" "buy mp5sd;"
// bind "kp_4" "buy mag7; buy sawedoff"
// bind "kp_5" "buy p90;"
// bind "kp_6" "buy bizon"
// bind "kp_7" "buy ump45"
// bind "kp_8" "buy negev"
// bind "kp_9" "buy mp9;"
// bind "kp_0" "buy vest;"
// bind "kp_del" "buy vesthelm;"
// bind "kp_enter" "buy defuser;"
// bind "kp_plus" "buy decoy;"
// bind "uparrow" "buy molotov; buy incgrenade;"
// bind "leftarrow" "buy smokegrenade;"
// bind "downarrow" "buy flashbang;"
// bind "rightarrow" "buy hegrenade;"
|