-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheavyweapons.cfg
57 lines (46 loc) · 2.2 KB
/
heavyweapons.cfg
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
// Clear Previous Keybinds
exec clear
// Start Executing cfg
echo "=== Loading Heavy Config ==="
// Attacks
alias +@FIRE "+attack; cmd spec_next"
alias -@FIRE "-attack; cmd spec_next"
alias +@ALTFIRE "+attack2; cmd spec_prev"
alias -@ALTFIRE "-attack2; cmd spec_prev"
// Movement
alias +@MOVEFORWARD "+forward; +mf; cl_crosshair_red 255; cl_crosshair_green 255; cl_crosshair_blue 255;"
alias +@MOVEBACK "+back; +mb; cl_crosshair_red 255; cl_crosshair_green 255; cl_crosshair_blue 255;"
alias +@MOVELEFT "+moveleft; +ml; cl_crosshair_red 255; cl_crosshair_green 255; cl_crosshair_blue 255;"
alias +@MOVERIGHT "+moveright; +mr; cl_crosshair_red 255; cl_crosshair_green 255; cl_crosshair_blue 255;"
alias -@MOVEFORWARD "-forward; -mf; cl_crosshair_red 255; cl_crosshair_green 255; cl_crosshair_blue 255;"
alias -@MOVEBACK "-back; -mb; cl_crosshair_red 255; cl_crosshair_green 255; cl_crosshair_blue 255;"
alias -@MOVELEFT "-moveleft; -ml; cl_crosshair_red 255; cl_crosshair_green 255; cl_crosshair_blue 255;"
alias -@MOVERIGHT "-moveright; -mr; cl_crosshair_red 255; cl_crosshair_green 255; cl_crosshair_blue 255;"
// Weapons
alias @PRIMARY "slot1; r_drawviewmodel 1; cl_crosshair_scale 32; r_drawtracers_firstperson 0; cl_crosshair_red 255; cl_crosshair_green 255; cl_crosshair_blue 255;"
alias @SECONDARY "slot2; r_drawviewmodel 1; cl_crosshair_scale 32; r_drawtracers_firstperson 0; cl_crosshair_red 255; cl_crosshair_green 255; cl_crosshair_blue 255;"
alias @MELEE "slot3; r_drawviewmodel 1; cl_crosshair_scale 32; r_drawtracers_firstperson 0; cl_crosshair_red 255; cl_crosshair_green 255; cl_crosshair_blue 255;"
alias @SPECIAL "slot4; r_drawviewmodel 1; cl_crosshair_scale 32; r_drawtracers_firstperson 0; cl_crosshair_red 255; cl_crosshair_green 255; cl_crosshair_blue 255;"
// Movement Keybinds
bind H +@MOVEFORWARD
bind F +@MOVEBACK
bind G +@MOVELEFT
bind J +@MOVERIGHT
// Jump and Crouch Keybinds
bind RALT +duck
bind MOUSE2 +jump
bind MWHEELUP +jump
bind MWHEELDOWN +jump
// Attack Keybinds
bind MOUSE1 +@FIRE
bind G +@ALTFIRE
// Weapon Switch Keybinds
bind SPACE @PRIMARY
bind T @SECONDARY
bind L @MELEE
bind MOUSE5 @SPECIAL
// Mics Keybinds
bind MOUSE4 +helpme
bind , +voicerecord
// Config Loaded
echo "=== Heavy Config Loaded! ==="