Bind Commands
Copy and paste the console command below into your console to add this bind to your game.
bind
o
"incrementvar
cl_radar_scale
0
1
0.25"
How it Works
This is a relatively simple bind. The first part of the above console command binds the bind to the "O" key with "bind O". The part that follows, "incrementvar cl_radar_scale 0 1 0.25", tells the game to increment the cl_radar_scale variable (the variable that controls the zoom of the radar) by 0.25 every time it is pressed, and to reset it back to 0 when it reaches a number above 1.
Other Bind Variations
Find different variations of this bind below.
Zoom When Holding Key
CS2 & CS:GO CompatibleThe below command will zoom your radar out when you hold the CAPSLOCK key. You <strong>need to put this command in your autoexec</strong>, or it will not work when you restart your game.
bind capslock +radarzoom;alias +radarzoom "cl_radar_always_centered 0;cl_radar_scale 0";alias -radarzoom "cl_radar_always_centered 0;cl_radar_scale 0.40"