blob: 34a90a3993331475770c3e8d5595f17c833866ce (
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
// Launch Options
// Windows: +exec bindings.cfg +exec bindings.cfg -novid -language bananagaming
// Linux: __GLVND_DISALLOW_PATCHING=1 %command% +exec bindings.cfg -novid -language bananagaming
// Default Binds
unbindall
exec bindings-normal
// Variablen
// ---------
// Ingame Settings
cl_autowepswitch 0
cl_dm_buyrandomweapons 0
cl_join_advertise 2 // https://www.reddit.com/r/GlobalOffensive/comments/40d8r9/cl_join_advertise_2_lets_your_friends_join_the/
closeonbuy 1
option_duck_method 0
option_speed_method 0
player_nevershow_communityservermessage 1
r_drawtracers_firstperson 1
net_splitrate 2
net_droponsendoverflow 1
// Hud
cl_autohelp 0
cl_disablefreezecam 1
cl_hud_background_alpha 0.25
cl_hud_bomb_under_radar 0
cl_hud_color 5
cl_hud_healthammo_style 1 // no health bars
cl_hud_playercount_pos 1 // bottom
cl_hud_playercount_showcount 0
cl_hud_radar_scale 1.25
cl_radar_always_centered 0
cl_radar_icon_scale_min 0.4
cl_radar_scale 0.5
cl_show_clan_in_death_notice 0
cl_showhelp 0
cl_showloadout 1
cl_teammate_colors_show 1 // 1 = color, 2 = color + letter
cl_use_opens_buy_menu 0
con_filter_enable 2
developer 1
gameinstructor_enable 0
hud_scaling 0.8
hud_showtargetid 1
hud_takesshots 1
net_graphheight 150
net_graphpos 2
safezonex 1 // 0.95
safezoney 1 // 0.95
// Sensitivity (G500 @1600 DPI (native))
m_rawinput 1
m_mousespeed 0
m_mouseaccel1 0
m_mouseaccel2 0
m_customaccel 0
m_customaccel_scale 0
sensitivity 0.8 // Should be the same as windows as of 08.01.2016
// FPS (Mehrfache vom Tickrate)
fps_max 129 // 129 // lets try 0 for a change :)
fps_max_menu 30
engine_no_focus_sleep 0
mat_queue_mode 2
cl_disablehtmlmotd 1
cl_forcepreload 1
// Network
rate 128000
cl_cmdrate 128
cl_updaterate 128
cl_interp 0
cl_interp_ratio 1
// cl_resend 3 // reconnect behaviour
// cl_resend_timeout 9
mm_dedicated_search_maxping 80
net_client_steamdatagram_enable_override 1
// Sound
// try snd_debug_panlaw 1
// windows_speaker_config 6 // 5.1 surround
voice_enable 1
voice_scale 0.5
snd_mixahead 0.075 // If clippy - more! Def: 0.1
snd_mute_losefocus 0 // mute game when alt-tabbed
lobby_voice_chat_enabled 0 // voice chat in lobby
cl_mute_enemy_team 0
dsp_enhance_stereo 0 // No audible changes, less CPU?
dsp_slow_cpu 0
snd_pitchquality 1
snd_headphone_pan_exponent 1.5 // Alternative 1.3
snd_stereo_speaker_pan_exponent 2
snd_surround_speaker_pan_exponent 2
snd_headphone_pan_radial_weight 1
snd_stereo_speaker_pan_radial_weight 1
snd_surround_speaker_pan_radial_weight 1
snd_front_headphone_position 53.2 // xx.x = Resolution: (5:4) 43.2 (4:3) 45.0 (16:10) 50.2 (16:9) 53.2
snd_rear_headphone_position 90
snd_front_stereo_speaker_position 53.2 // yy.y = (xx.x / 90 - 1) * theta + 90
snd_rear_stereo_speaker_position 90
snd_menumusic_volume 0
snd_deathcamera_volume 0
snd_roundend_volume 0
snd_roundstart_volume 0
snd_mapobjective_volume 0
snd_tensecondwarning_volume 0.1
snd_mvp_volume 0.1
// Weapon viewmodel
cl_bob_lower_amt 0
cl_bobamt_lat 0
cl_bobamt_vert 0
cl_righthand 1
cl_viewmodel_shift_left_amt 0
cl_viewmodel_shift_right_amt 0
alias "fovsmall" "viewmodel_fov 55;viewmodel_offset_x 2;viewmodel_offset_y -2;viewmodel_offset_z -2"
alias "fovquake" "viewmodel_fov 68;viewmodel_offset_x -2;viewmodel_offset_y -2;viewmodel_offset_z -2"
alias "fovdefault" "viewmodel_fov 60;viewmodel_offset_x 1;viewmodel_offset_y 1;viewmodel_offset_z -1"
fovsmall
viewmodel_presetpos 0 // to activate viewmodel, if loaded with parameter
// Crosshair and local bindings
exec bindings-crosshair
exec bindings-local
exec bindings-aliases
fdefault
volume 0.3
// log_dumpchannels
// log_color "Console" "FFFFFFFF"
log_color General FF3333FF
log_level DownloadManager error
// log_color "Developer" "FFFFFFFF"
// log_color "DeveloperConsole" "FFFFFFFF"
// log_color "LOADING" "FFFFFFFF"
host_writeconfig
hud_reloadscheme
ui_reloadscheme
echo "-Settings and binds loaded!"
// vim: commentstring=//\ %s
|