-
Notifications
You must be signed in to change notification settings - Fork 0
/
autoexec.cfg
78 lines (60 loc) · 1.87 KB
/
autoexec.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// client config
//bind to open up console
bind "`" "toggleconsole"
// Grenade Line-up commands
bind 1 "slot1 ; cl_crosshairsize 3"; bind 2 "slot2 ; cl_crosshairsize 3"; bind 3 "slot3 ; cl_crosshairsize 3"; bind 4 "slot8 ; cl_crosshairsize 1000"
// Volume Change Bind
bind [ "incrementvar volume 0 1 0.25"
// Jump Commands
bind mwheelup +jump
bind mwheeldown +jump
//fps commands
// change cl_showfps to 1 if you want to enable it
cl_showfps "0"
fps_max "0"
//jump throw bind
alias "+boing" "+jump"
alias "+ding" "-attack; -attack2"
alias "-boing" "-jump"
bind "c" "+boing; +ding; -boing"
//run throw bind
alias "+fthrow" "+forward;+jump"
alias "+noattack" "-attack"
alias "+endfthrow" "-jump"
alias "+endfthrowwalk" "-forward;-back"
bind "n" "+fthrow;+noattack;+endfthrow;+endfthrowwalk"
// movement commands
alias "+myjump" "+jump"
alias "-myjump" "-jump"
bind "mwheeldown" "+myjump;-myjump"
alias "_checkw" "-forward; alias checkw"
alias "+w" "+forward; alias checkw _checkw"
alias "-w" "checkw"
bind "w" "+w"
alias "_checks" "-back; alias checks"
alias "+s" "+back; alias checks _checks"
alias "-s" "checks"
bind "s" "+s"
alias "_checka" "-left; alias checka"
alias "+a" "+left; alias checka _checka"
alias "-a" "checka"
bind "a" "+a"
alias "_checkd" "-right; alias checkd"
alias "+d" "+right; alias checkd _checkd"
alias "-d" "checkd"
bind "d" "+d"
alias "_checkcrouch" "-duck; alias checkcrouch"
alias "+crouch" "+duck; alias checkcrouch _checkcrouch"
alias "-crouch" "checkcrouch"
bind "ctrl" "+crouch"
alias "_checkwalk" "-sprint; alias checkwalk"
alias "+walk" "+sprint; alias checkwalk _checkwalk"
alias "-walk" "checkwalk"
bind "shift" "+walk"
echo “#####”
echo “######”
echo “#######”
echo “######### cs2 autoexec loaded #########”
echo “#######”
echo “######”
echo “#####”