Skip to content

Instantly share code, notes, and snippets.

@griimick
Last active March 21, 2019 23:18
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 griimick/d66d02a678cca239030b27966c8ecdf0 to your computer and use it in GitHub Desktop.
Save griimick/d66d02a678cca239030b27966c8ecdf0 to your computer and use it in GitHub Desktop.
Counter Strike Global Offensive Player Config
echo "GriiM's Config"
echo "initializing crosshair........"
cl_crosshair_drawoutline "1.000000"
cl_crosshair_dynamic_maxdist_splitratio "0.35"
cl_crosshair_dynamic_splitalpha_innermod "1"
cl_crosshair_dynamic_splitalpha_outermod "0.5"
cl_crosshair_dynamic_splitdist "7"
cl_crosshair_outlinethickness "1.000000"
cl_crosshair_sniper_show_normal_inaccuracy "0"
cl_crosshair_sniper_width "1"
cl_crosshair_t "0.000000"
cl_crosshairalpha "255.000000"
cl_crosshaircolor "1.000000"
cl_crosshaircolor_b "0.000000"
cl_crosshaircolor_g "255.000000"
cl_crosshaircolor_r "0.000000"
cl_crosshairdot "0.000000"
cl_crosshairgap "-1.500000"
cl_crosshairgap_useweaponvalue "0"
cl_crosshairscale "0"
cl_crosshairsize "2.000000"
cl_crosshairstyle "4.000000"
cl_crosshairthickness "1.150000"
cl_crosshairusealpha "1"
cl_fixedcrosshairgap "3"
m_rawinput "1"
m_mouseaccel1 "0"
m_mouseaccel2 "0"
echo "crosshair Ready!"
echo "setting mouse sensitivity to 1.08"
sensitivity "1.08"
echo "initializing viewmodel........"
cl_viewmodel_shift_left_amt "1.5"
cl_viewmodel_shift_right_amt "0.75"
viewmodel_fov "63"
viewmodel_offset_x "1.25"
viewmodel_offset_y "0.75"
viewmodel_offset_z "-1.25"
cl_bob_lower_amt "21"
cl_bobamt_lat "0.4"
cl_bobamt_vert "0.25"
cl_bobcycle "0.98"
zoom_sensitivity_ratio_mouse "0.818933027098955175"
echo "viewmodel Ready!"
fps_max "100"
cl_autowepswitch "0" // Will not auto-switch to weapons if you pick them up
cl_forcepreload "1"
net_graph "1" // Shows net_graph stats (fps, rates, choke, etc.)
net_graphproportionalfont "0" // Changes the size of the net graph text
echo "Audio Settings"
snd_deathcamera_volume "0.0"
snd_mapobjective_volume "0.0"
snd_menumusic_volume "0.008749"
snd_musicvolume "0.0"
snd_mute_losefocus "0.0"
snd_roundend_volume "0.0"
snd_roundstart_volume "0.0"
snd_tensecondwarning_volume "0.030006"
snd_mute_losefocus "0.0"
snd_mvp_volume "0.019685"
voice_scale "0.62";
snd_surround_speakers "0"
echo "sound Ready!"
echo "initializing keybinds........."
bind "c" "use weapon_knife;use weapon_smokegrenade"
bind "4" "use weapon_knife;use weapon_hegrenade"
bind "mouse4" "use weapon_knife;use weapon_flashbang"
bind "mouse5" +voicerecord
bind "z" "use weapon_knife;use weapon_molotov;use weapon_incgrenade;"
bind "x" "use weapon_knife;use weapon_decoy"
bind "mwheelup" +jump
bind "mwheeldown" +jump
bind "shift" "+speed; r_cleardecals"
cl_disablefreezecam 1
echo "keybinds Ready!"
alias "clutch" "clutchon"
alias "clutchon" "voice_enable 0; clutchsoundon; gameinstructor_enable 1; cl_clearhinthistory; r_cleardecals; say_team Voice Disabled"
alias "clutchoff" "voice_enable 1; clutchsoundoff; gameinstructor_enable 0; say_team Voice Enabled; alias clutch clutchon"
clutchoff
//Bind this to a key (this will turn on & off the clutch)
bind "/" clutch
echo "Fps and Lag Solution (some are deprecated)"
cl_interp 0; //(makes it the lowest possible) the lowest you can get in csgo is 0.007813 if interp_ratio is set to 1
cl_interp_ratio 1; //(ratio 1 makes it x1 | ratio 2 makes it x2 which means ratio 1 is better so its lower | if you use 0 it
cl_cmdrate 128;
cl_updaterate 128;
rate 128000;
cl_forcepreload 1;
cl_lagcompensation 1;
cl_predictweapons 1;
r_dynamic 0;
r_eyegloss 0;
r_eyemove 0;
r_eyesize 0;
muzzleflash_light 0;
sys_antialiasing 0;
sys_aspectratio -1;
sys_refldetail 0;
mat_queue_mode 2;
// Toggle Info Target ID 2017-03-16
alias "ToggleInfo" "info_on"
alias "info_on" "+cl_show_team_equipment; alias ToggleInfo info_off"
alias "info_off" "-cl_show_team_equipment; alias ToggleInfo info_on"
bind "J" "ToggleInfo"
ToggleInfo //default on
// Jump thow with space
alias "+jumpthrow" "+jump;-attack";alias "-jumpthrow" "-jump";bind "space" "+jumpthrow"
//New radar for whole map info
cl_radar_always_centered "0"
cl_radar_scale "0.3"
cl_hud_radar_scale "1.15"
cl_radar_icon_scale_min "1"
cl_radar_rotate "1"
cl_radar_square_with_scoreboard "1"
//Radar zoom in-out script
bind "KP_plus" "incrementvar cl_radar_scale 0.25 1.0 0.05";
bind "KP_minus" "incrementvar cl_radar_scale 0.25 1.0 -0.05";
host_writeconfig //force the cfg to persist
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment