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
// master command
sv_cheats 1 // this is for all the features to work propperly
bind x hud_0 // hud toggle (also hides crosshair)
alias hud_0 "hud_draw 0;crosshair 0;bind x hud_1"
alias hud_1 "hud_draw 1;crosshair 1;bind x hud_0"
bind x ff_1 // makes time go faster (host_framerate 0.025)
alias ff_1 "host_framerate 0.025;bind x ff_0"
alias ff_0 "host_framerate 0;bind x ff_1"
bind x sm_1 // makes time go slower (host_framerate 0.001)
alias sm_1 "host_framerate 0.001;bind x sm_0"
alias sm_0 "host_framerate 0;bind x sm_1"
bind x zm_1 // zoom like in half-life 2
alias zm_1 "sensitivity 2;default_fov 24;bind x zm_0"
alias zm_0 "sensitivity 5;default_fov 90;bind x zm_1"
bind x dk_1 // crouch/duck toggle
alias dk_1 "+duck;bind x dk_0"
alias dk_0 "-duck;bind x dk_1"
bind x wt_1 // run/sprint toggle
alias wt_1 "-speed;bind x wt_0"
alias wt_0 "+speed;bind x wt_1"
bind x +holdrun // sprint like in half-life 2
+speed
sv_accelerate 100
sv_airaccelerate 100
sv_wateraccelerate 25
alias +holdrun -speed
alias -holdrun +speed
These are some extra features that do not come with the retail version of Half-Life (1) nor expansions/episodes.
Wherever the equis are in front of the configuration variables, they should be replaced with custom keys of YOUR preference.