Skip to content

Instantly share code, notes, and snippets.

@Olical
Created March 10, 2016 20:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Olical/482fff164e51772d257e to your computer and use it in GitHub Desktop.
Save Olical/482fff164e51772d257e to your computer and use it in GitHub Desktop.
Counter-Strike: Global Offensive config from Absent (backup of http://hastebin.com/udahojevop.hs)
// a few commands and binds that might help your gameplay
// radar size commands
cl_radar_scale 3.5 // allows visibility of entire minimap
cl_radar_always_centered 0 // allows visibility when stood to one side of map
cl_radar_rotate 0 // freezes map orientation
cl_radar_icon_scale_min 0.6 // changes size of icons relative to map
// 128 tick optimisation commands
cl_updaterate 128 // send maximum data every tick
cl_cmdrate 128 // receive maximum data each tick
rate 128000 // allow packet size to match tick
cl_interp 0 // will default to lowest possible for each game
cl_interp_ratio 1 // less lag compensation problems
// random helpful shit
cl_join_advertise 2 // let friends join you in community servers without an invite
mat_powersavingsmode 0 // useful for laptops
net_graph 1 // shows helpful imformation
net_graphproportionalfont 0 // reduces size of net_graph
hud_showtargetid 0 // turns off annoying red and green crosshair
snd_mixahead 0.05 // hear sounds quicker
cl_forcepreload 1 // can reduce lags mid game
zoom_sensitivity_ratio_mouse 0.8189 // most accurate sniper zoom sensitivity
cl_disablehtmlmotd 1 // turns off annoying html message
// some random useful binds
bindtoggle key voice_scale // turns on/off voices
bindtoggle key gameinstructor_enable // turns on/off arrow to find bomb in smoke
bind key r_cleardecals // removes all blood and bullet impacts for visibility
bind key "say fuck you" // insert favourite annoying message here
// grenades should be separately bound
bind key slot6 // he grenade
bind key slot7 // flashbang
bind key slot8 // smoke grenade
bind key slot9 // decoy
bind key slot10 // molotov/incendiary
// an alias to display damage dealt and received at the end of each round
bind key "displaydamage"
alias displaydamage "displaydamage_on"
alias displaydamage_on "con_filter_text Damage; con_filter_text_out Player:; con_filter_enable 2; developer 1; alias displaydamage "displaydamage_off""
alias displaydamage_off "con_filter_enable 0; developer 0; alias displaydamage "displaydamage_on""
// love,
// absent
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment