1- //
2- // KEY BINDINGS
3- //
4-
5- unbindall
6-
7- //
8- // weapons
9- //
10- bind 1 "weapon 1 "
11- bind 2 "weapon 2 "
12- bind 3 "weapon 3 "
13- bind 4 "weapon 4 "
14- bind 5 "weapon 5 "
15- bind 6 "weapon 6 "
16- bind 7 "weapon 7 "
17- bind 8 "weapon 8 "
18- bind 9 "weapon 9 "
19- bind 0 "weapon 10 "
20- bind - "sizedown"
21- bind _ "sizedown"
22- bind = "sizeup"
23- bind + "sizeup"
24-
25- bind [ weapprev
26- bind ] weapnext
27- bind / weapnext
28- bind \ weapongrabbed
29- bind ENTER +button2
30-
31- bind mwheelup weapprev
32- bind mwheeldown weapnext
33-
34- //
35- // CHARACTER CONTROLS
36- //
37-
38- bind CTRL +attack
39-
40- bind ALT +strafe
41- bind SHIFT +speed
42-
43- bind DEL +lookdown
44- bind PGDN +lookup
45- bind END centerview
46-
47- bind c +movedown
48- bind SPACE +moveup
49-
50-
51- bind UPARROW +forward
52- bind DOWNARROW +back
53- bind LEFTARROW +left
54- bind RIGHTARROW +right
55- bind w +forward
56- bind a +moveleft
57- bind s +back
58- bind d +moveright
59-
60- //
61- // MOUSE OPTIONS
62- //
63-
64- bind \ +mlook
65-
66- //
67- // CLIENT ENVIRONMENT COMMANDS
68- //
69-
70- bind PAUSE "pause"
71- bind ESCAPE "togglemenu"
72- bind ~ "toggleconsole"
73- bind ` "toggleconsole"
74-
75- bind TAB +scores
76-
77- bind F1 "vote yes"
78- bind F2 "vote no"
79- bind F3 "ready"
80-
81- //
82- // DEVELOPER KEYS
83- //
84- //bind F4 give all
85- //bind F5 r_speeds 1
86- //bind F6 r_speeds 0
87- //bind F7 r_showtris 1
88- //bind F8 r_showtris 0
89- //bind F9 noclip
90- //bind F10 god
91- bind F11 screenshot
92-
93-
94- bind t "messagemode"
95-
96- //
97- // MOUSE BUTTONS
98- //
99-
100- bind MOUSE3 +zoom
101- bind MOUSE1 +attack
102- bind MOUSE2 +strafe
103-
104- //
105- // UNSUPPORTED CVARS
106- //
107-
108- set r_vertexLight 0
109- set r_intensity 1
110-
111- set cl_allowDownload 1
1+ /*
2+
3+ Copyright (C) 2019 miOw
4+
5+ This file is part of AfterShock XE.
6+
7+ AfterShock XE is free software: you can redistribute it and/or modify
8+ it under the terms of the GNU General Public License as published by
9+ the Free Software Foundation, either version 2 of the License, or
10+ (at your option) any later version.
11+
12+ AfterShock XE is distributed in the hope that it will be useful,
13+ but WITHOUT ANY WARRANTY; without even the implied warranty of
14+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+ GNU General Public License for more details.
16+
17+ You should have received a copy of the GNU General Public License
18+ along with AfterShock XE. If not, see <https://www.gnu.org/licenses/>.
19+
20+ */
21+
22+ unbindall
23+
24+ // Weapon binds
25+
26+ bind 1 "weapon 1 " // Gauntlet
27+ bind 2 "weapon 2 " // Machinegun
28+ bind 3 "weapon 3 " // Shotgun
29+ bind 4 "weapon 4 " // Grenade launcher
30+ bind 5 "weapon 5 " // Rocket launcher
31+ bind 6 "weapon 6 " // Lightning gun
32+ bind 7 "weapon 7 " // Railgun
33+ bind 8 "weapon 8 " // Plasma gun
34+ bind 9 "weapon 9 " // BFG
35+
36+ bind c "weapon 3 " // Shotgun
37+ bind r "weapon 4 " // Grenade launcher
38+ bind q "weapon 5 " // Rocket launcher
39+ bind e "weapon 6 " // Lightning gun
40+ bind SHIFT "weapon 7 " // Railgun
41+ bind f "weapon 8 " // Plasma gun
42+ bind v "weapon 9 " // BFG
43+
44+ bind MWHEELDOWN "weapnext" // Scroll down for next weapon
45+ bind MWHEELUP "weapprev" // Scroll up for previous weapon
46+ bind n "+acc" // Show weapon accuracies
47+
48+ bind MOUSE1 "+attack" // Shoot
49+
50+ // Movement binds
51+
52+ bind w "+forward"
53+ bind a "+moveleft"
54+ bind s "+back"
55+ bind d "+moveright"
56+
57+ bind UPARROW "+forward"
58+ bind LEFTARROW "+moveleft"
59+ bind DOWNARROW "+back"
60+ bind RIGHTARROW "+moveright"
61+
62+ bind SPACE "+moveup" // Jump
63+ bind CTRL "+movedown" // Crouch
64+ bind ALT "+speed" // Walk
65+
66+ // Chat binds
67+
68+ bind t "messagemode" // General chat
69+ bind x "messagemode2" // Team chat
70+
71+ // Misc binds
72+
73+ bind TAB "+scores" // Show scoreboard
74+ bind MOUSE3 "+button2" // Use item
75+ bind ENTER "+button2"
76+ bind ` "toggleconsole" // Bring down the console
77+ bind ~ "toggleconsole"
78+ bind F1 "vote yes"
79+ bind F2 "vote no"
80+ bind F3 "ready"
81+ bind INS "team f" // Auto join
82+ bind HOME "team b" // Join blue team
83+ bind PGUP "team r" // Join red team
84+ bind PAUSE "pause"
85+ bind DEL "dropweapon; say_team "^1 <- ^5Dropped #W""
86+ bind END "dropflag; say_team "^1 <- ^5Dropped ^1FLAG""
87+ bind PGDN "droppowerup; say_team "1 <- ^5Dropped ^1PU""
88+ bind F8 "screenshotJPEG"
89+ bind F9 "timeout"
90+
91+ // Misc
92+
93+ set r_vertexLight "0 "
94+ set cl_allowDownload "1 "
0 commit comments