CSGO Recommended Commands

A list of recommened commands ready to copy and paste into your console or cfg

On this page

Launch options

-novid -tickrate 128 +fps_max 0 -nojoy +fps_max 0 +cl_showfps 1

Autoexec - Basic

Check out the how to create your autoexec section.

// disable mouse acceleration
m_mouspeed 0

// disable hints for new players
gameinstructor_enable 0

cl_hud_radar_scale 1.15
cl_radar_always_centered 0
cl_radar_scale 0.3
cl_radar_rotate 1
cl_radar_icon_scale_min 1
cl_radar_square_with_scoreboard 1

// disable auto weapon switch
cl_autowepswitch 0

// righthand
cl_righthand 1

// max ping in matchmaking
mm_dedicated_search_maxping 60

// classic static crosshair
cl_crosshairstyle 4

//Store current settings to config.cfg
host_writeconfig
//clear the console output
clear
//write to the console
echo "autoexec.cfg loaded, GLHF || csgoconsole.com"

Autoexec - Advanced

This is a more advanced version of the previous autoexec. It includes the following:

  1. Scroll wheel jump
  2. Bomb drop bound to b
  3. Jump throw bound to v
  4. Netgraph config
// disable mouse acceleration
m_mouspeed 0

// disable hints for new players
gameinstructor_enable 0

cl_hud_radar_scale 1.15
cl_radar_always_centered 0
cl_radar_scale 0.3
cl_radar_rotate 1
cl_radar_icon_scale_min 1
cl_radar_square_with_scoreboard 1

// disable auto weapon switch
cl_autowepswitch 0

// righthand
cl_righthand 1

// max ping in matchmaking
mm_dedicated_search_maxping 60

// classic static crosshair
cl_crosshairstyle 4

// jumpthrow
bind v "+jump;-attack;-jump"

// grenade binds
bind x "use weapon_knife; use weapon_flashbang"
bind c "use weapon_knife; use weapon_smokegrenade"
bind 4 "use weapon_knife; use weapon_molotov;use weapon_incgrenade"
bind 5 "use weapon_knife; use weapon_hegrenade"

// drop bomb
bind b "use weapon_knife; use weapon_c4; drop; slot1"

// mwheel jump
bind mwheelup "+jump"
bind mwheeldown "+jump"

// netgraph
net_graph "1"
net_graphpos "2"
net_graphheight "1"

//Store current settings to config.cfg
host_writeconfig
//clear the console output
clear
//write to the console
echo "autoexec.cfg loaded, GLHF || csgoconsole.com"