Skip to content
CS2Apps

Launch options + useful binds

Paste-and-play launch + bind reference.

Tick the launch options you want, copy the resulting string into Steam. Below: 10 binds the pros use — jump-throw, run-throw, clear decals, quick-buy AK, mute teammates. Each with a one-click copy.

Launch options

Right-click CS2 in Steam → Properties → Launch Options. Paste this whole string in.

-novid -nojoy -high +rate 786432

Useful binds

Each bind below is a copy-paste recipe — paste into the dev console (~) or save it in your autoexec.cfg.

  • Jump-throw bind

    Releases a grenade at the apex of your jump. Required for most pro lineups.

    Suggested key: ALT

    Why useful: Smoke / molly lineups assume one. Without it, pixel-perfect throws are luck.

    alias "+jumpthrow" "+jump;-attack;-attack2"
    alias "-jumpthrow" "-jump"
    bind "ALT" "+jumpthrow"
  • Run-throw bind

    Releases a grenade while running — keeps forward momentum on lineups.

    Suggested key: X

    Why useful: Faster execute lineups. T-spawn → jungle smoke on Mirage is the canonical example.

    alias "+runthrow" "+forward;+jump;-attack"
    alias "-runthrow" "-forward;-jump"
    bind "X" "+runthrow"
  • Clear decals (blood / bullet holes)

    Wipes blood and bullet decals — declutters wallbang spots.

    Suggested key: F

    Why useful: After a fight, blood obscures wallbang lineups. One key = clean view.

    bind "F" "r_cleardecals"
  • Toggle weapon hand

    Swap viewmodel between right and left hand.

    Suggested key: H

    Why useful: Some angles favour the off-hand viewmodel for clearing tight corners.

    bind "H" "toggle cl_righthand 0 1"
  • Mute / unmute teammates

    Quick-toggle voice receive — for tilt control.

    Suggested key: V

    Why useful: Pre-emptive mute when a teammate is going off. Tap V to bring them back.

    alias "voice_on" "voice_scale 1; alias voice_toggle voice_off"
    alias "voice_off" "voice_scale 0; alias voice_toggle voice_on"
    alias voice_toggle voice_off
    bind "V" "voice_toggle"
  • Quick-buy AK + kit

    One-key AK + armor + defuse + nades. T-side default rifle round.

    Suggested key: KP_INS

    Why useful: Saves ~5 seconds per round — under freeze-time limit when others miss buys.

    bind "KP_INS" "buy ak47; buy vesthelm; buy smokegrenade; buy flashbang; buy hegrenade"
  • Quick-buy M4A4 + kit + defuser

    CT-side equivalent. Includes defuse kit for retake rounds.

    Suggested key: KP_END

    Why useful: Default CT full buy. Swap m4a4 → m4a1 if you prefer the silenced model.

    bind "KP_END" "buy m4a4; buy vesthelm; buy defuser; buy smokegrenade; buy flashbang; buy hegrenade"
  • Toggle net graph

    Show/hide framerate, ping, packet loss in corner.

    Suggested key: F1

    Why useful: Quick FPS check during play without opening dev console.

    bind "F1" "toggle cl_showfps 1 0"
  • Stop annoying voice chat ringing

    Sets voice scale to 50% — keeps comms audible without ear damage.

    Suggested key: (Run on launch)

    Why useful: Default voice scale is 1.0 — way too loud against game audio. Halving fixes it.

    voice_scale 0.5
  • Drop knife to plant faster

    Forces a knife switch + planting starts immediately on key release.

    Suggested key: C

    Why useful: Knife-out plants are slightly faster than primary-out plants.

    alias "+kniferplant" "use weapon_knife; +use"
    alias "-kniferplant" "-use; lastinv"
    bind "C" "+kniferplant"