blob: b08566fcc45064f880b060d7e3b983ddb4f0ac1b (
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
|
// Simple toggles per keybind
alias +cleanattack "+attack"
alias -cleanattack "-attack; r_cleardecals"
alias +crosshairmax "cl_crosshair_sniper_width 1; cl_crosshairstyle 3; cl_crosshairsize 1337; cl_crosshairgap 10;"
alias -crosshairmax "exec bindings-crosshair"
alias +duckjump "+jump; +duck";
alias -duckjump "-jump; -duck";
alias +jumpthrow "+JUMP; -ATTACK; -ATTACK2; cast_ray"
alias -jumpthrow "-JUMP"
alias +score_netgraph "+showscores; net_graph 1;" // cl_showpos 1 //; r_cleardecals
alias -score_netgraph "-showscores; net_graph 0;" // cl_showpos 0
alias +zoomedoutradar "cl_radar_scale 0.3; cl_radar_always_centered 0";
alias -zoomedoutradar "cl_radar_scale 0.5; cl_radar_always_centered 1";
alias +walkshift "+speed; exec bindings-shift";
alias -walkshift "-speed; exec bindings-normal";
alias +chshift "+crosshairmax; exec bindings-shift"
alias -chshift "-crosshairmax; exec bindings-normal"
// Volume + Microphone
alias "+mic" "volume 0.01; +voicerecord"
alias "-mic" "-voicerecord; volume_c"
// alias "+mic" "+voicerecord"
// alias "-mic" "-voicerecord"
alias volume_up "incrementvar volume 0 1 0.2; volume"
alias volume_down "incrementvar volume 0 1 -0.2; volume"
// Clutch-Mode
// alias togglevoice voiceoff
// alias voiceoff "voiceecho; echo "Voice-Off"; gameinstructor_enable 1; incrementvar snd_musicvolume 0 0.2 -0.05; incrementvar volume 0 0.6 0.1; voice_scale 0; ignorerad; ignoremsg; ignoremsg; ignoremsg; cl_clearhinthistory; alias togglevoice voiceon; play buttons/blip1.wav;"
// alias voiceon "voiceecho; echo "Voice-On"; gameinstructor_enable 0; incrementvar snd_musicvolume 0 0.2 0.05; incrementvar volume 0 0.6 -0.1; voice_scale 1; ignorerad; ignoremsg; alias togglevoice voiceoff; play buttons/bell1.wav;"
alias toggleafk "afk"
alias afk "+forward; +left; +speed; +duck; +lookatweapon; volume 0; alias toggleafk noafk"
alias noafk "-forward; -left; -speed; -duck; -lookatweapon; volume 0.8; alias toggleafk afk"
alias togglehands handsleft
alias handsleft "cl_righthand 0; alias togglehands handsright;"
alias handsright "cl_righthand 1; alias togglehands handsleft;"
// alias "banana" "prop_physics_create /props/cs_italy/bananna.mdl"
alias "d" "disconnect"
alias "q" "quit"
alias "r" "retry"
// Faster clan access
alias clans "echo 30fps arch beer gog hax linux rlinux naked overwatcher panda pebcak penguins pixel terrager trilluxe wine"
alias 30fps "cl_clanid 9393382"
alias arch "cl_clanid 123696"
alias beer "cl_clanid 532945"
alias gog "cl_clanid 505263"
alias hax "cl_clanid 1188"
alias linux "cl_clanid 6856810"
alias naked "cl_clanid 4819367"
alias noclan "cl_clanid 0"
alias noobs "cl_clanid 3911289"
alias overwatcher "cl_clanid 4779230"
alias panda "cl_clanid 2444451"
alias pebcak "cl_clanid 1641687"
alias penguins "cl_clanid 1333273"
alias pixel "cl_clanid 3953678"
alias rlinux "cl_clanid 4233516"
alias terrager "cl_clanid 3446814"
alias trilluxe "cl_clanid 5154531"
alias wine "cl_clanid 214135"
alias zeus "cl_clanid 10167451"
alias "retake" "connect 89.58.2.246:27015"
alias "5on5" "password beer1337; connect 89.58.2.246:27016"
alias "load_5on5" "rcon exec csgo_esl_serverconfig/esl5on5.cfg"
alias "rr" "rcon mp_restartgame 1"
// alias "hmretake" "connect 213.239.211.57:4008"
// alias "hm1on1" "connect 213.239.211.57:4007"
alias "use_pistol" "use weapon_glock; use weapon_hkp2000; use weapon_p250; use weapon_tec9; use weapon_usp_silencer; use weapon_cz75a; use weapon_deagle; use weapon_elite; use weapon_fiveseven;"
// vim: commentstring=//\ %s
|