Counter-Strike 2
213 ψήφοι
Advanced Overwatch Demo Playback Controls
Από trìpáz
Keybinds for Overwatch demos.Controls demo playback and other features like:
  • Fastforward x5, x15
  • Slowmotion 0.1 to 0.9 of normal speed
  • Bullet Impacts on Walls and Playermodels
  • Weapon Spread
  • X-Ray
  • Wireframe Mode
  • Clear Decals
  • Zoom
   
Βραβείο
Αγαπημένο
Αγαπημένο
Μη αγαπημένο
Features & Keybinds
This config uses the keyboard to control demo playback. So there is no need to have the demoplayback UI cluttering up your screen.

Keys used:

o
Toggle demo binds On/Off
Numpad 1-9
Slow to 0.1-0.9 of normal speed
Numpad 0
Normal speed
Numpad Plus
Fast Forward x5
Numpad Minus
Fast Forward x15
Numpad Enter
Normal speed
c
Clear Decals
i
Toggle Show Impacts
r
Resume Demo
s
Toggle Show Weapon Spread
w
Toggle Wireframe Mode
x
Toggle X-Ray Vision
UPARROW Key
Zoom In
DOWNARROW Key
Zoom Out
SPACEBAR
Toggle Demo Pause
Downloads
You can copy paste the script from the code boxes or download the autoexec.cfg and overwatch.cfg files from this link:
{Ο ΣΥΝΔΕΣΜΟΣ ΑΦΑΙΡΕΘΗΚΕ}
Creating the overwatch.cfg file
  • Create an overwatch.cfg file inside your /csgo/cfg/ folder and copy the contents from the overwatch.cfg section into it.
    Example path: C:\Program Files (x86)\Steam\SteamApps\common\Counter-Strike Global Offensive\csgo\cfg\overwatch.cfg
  • (Optional) Edit the key to toggle between your autoexec.cfg (unload overwatch binds) and overwatch.cfg (load overwatch binds) Default is bound to "o"

overwatch.cfg
bind "o" "exec autoexec.cfg" // key to toggle overwatch binds // _________________ // | Misc | // ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯ sv_cheats "1" sv_showimpacts "0" sv_showimpacts_time "2.5" // __________________ // | Binds | // ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯ bind "SPACE" "demo_togglepause" // pause/play demo bind "c" "r_cleardecals" // get rid of bulletholes and black residue from grenade explosions bind "i" "toggle sv_showimpacts" // show bullet impacts on walls, playermodels bind "r" "demo_resume" // resume demo playback (if demo gets stuck) bind "s" "toggle weapon_debug_spread_show" // show weapon inaccuracy/spread bind "w" "incrementvar r_drawothermodels 1 2 1" // kinda like x-ray bind "x" "toggle spec_show_xray" // turn x-ray vision on / off // __________________ // | Timescale Binds| // controls the demo playback time. Going below 0.1 is not recommended // ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯ // Keypad Demo Timescale binds (Num-Pad 1-9) bind kp_end "demo_timescale 0.1;sv_showimpacts_time 0.1" bind kp_downarrow "demo_timescale 0.2;sv_showimpacts_time 0.2" bind kp_pgdn "demo_timescale 0.3;sv_showimpacts_time 0.3" bind kp_leftarrow "demo_timescale 0.4;sv_showimpacts_time 0.4" bind kp_5 "demo_timescale 0.5;sv_showimpacts_time 0.5" bind kp_rightarrow "demo_timescale 0.6;sv_showimpacts_time 0.6" bind kp_home "demo_timescale 0.7;sv_showimpacts_time 0.7" bind kp_uparrow "demo_timescale 0.8;sv_showimpacts_time 0.8" bind kp_pgup "demo_timescale 0.9;sv_showimpacts_time 0.9" bind kp_ins "demo_timescale 1;sv_showimpacts_time 1" // Normal speed bind kp_enter "demo_timescale 1;sv_showimpacts_time 1" // Normal speed bind kp_plus "demo_timescale 5" // fast forward bind kp_minus "demo_timescale 15" // fast forward // __________________ // | Zoom Binds | // ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯ bind UPARROW "fov_cs_debug 33" // zoom view in bind DOWNARROW "fov_cs_debug 0" // zoom view out echo "" echo "---------------------------------" echo "!!! overwatch.cfg loaded !!!" echo "---------------------------------" echo ""
Create or modify your autoexec.cfg
  • Create an autoexec.cfg file inside your /csgo/cfg/ folder if it does not already exist and copy the contents from the autoexec.cfg section into it. If you already have an existing autoexec.cfg file, paste the code at the beginning of the file.
    Example path: C:\Program Files (x86)\Steam\SteamApps\common\Counter-Strike Global Offensive\csgo\cfg\autoexec.cfg
  • (Optional) Edit the key to toggle between your autoexec.cfg (unload overwatch binds) and overwatch.cfg (load overwatch binds) Default is bound to "o"
  • If you have any custom binds, enter your values in the section "Keyboard Binds", "Numpad Binds" and "Zoom Binds" accordingly. I have set the keybinds to the default values as a start. For reference of your currently bound keys just open your config.cfg file in the /csgo/cfg/ folder and search for the keys listed below. If a key does not exist (you have nothing bound to it) just leave it at empty string ""

autoexec.cfg
bind "o" "exec overwatch.cfg" // Key to unload overwatch binds // _________________ // | Misc | // set all values back to default // ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯ sv_cheats 0 sv_showimpacts 0 sv_showimpacts_time 4 // __________________ // | Keyboard Binds | // default key binds (config_default.cfg): adjust them to your key binds // ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯ bind "SPACE" "+jump" bind "c" "radio3" bind "i" "show_loadout_toggle" bind "r" "+reload" bind "s" "+back" bind "w" "+forward" bind "x" "radio2" // __________________ // | Numpad Binds | // ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯ unbind kp_end unbind kp_downarrow unbind kp_pgdn unbind kp_leftarrow unbind kp_5 unbind kp_rightarrow unbind kp_home unbind kp_uparrow unbind kp_pgup unbind kp_ins unbind kp_enter unbind kp_plus unbind kp_minus // __________________ // | Zoom Binds | // ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯ unbind UPARROW unbind DOWNARROW host_writeconfig // write changes to config.cfg echo "" echo "---------------------------------" echo "!!! autoexec.cfg loaded !!!" echo "---------------------------------" echo ""
47 σχόλια
UniiiLADROGA ლ(ಠ෴ಠლ) 2 Ιουν 2021, 6:33 
+rep
асталоп епани 10 Ιουλ 2020, 3:24 
mutual + rep
взаимный +rep
7UP 15 Απρ 2020, 8:37 
yes exactly, the problem is that I copied and pasted the files in the folder in text format right ?! there was a link that copied automatically but is no longer valid. I even copied everything to a folder with text format, I don't know if it is the format or the program that reads the script that is wrong but thanks for the help anyway.
trìpáz  [Δημιουργός] 15 Απρ 2020, 7:57 
This is what I get in console when I exec overwatch:


Execing config: overwatch.cfg

---------------------------------
!!! overwatch.cfg loaded !!!
---------------------------------


If I try to exec a file with for example the .txt extension it gives me this:

] exec overwatch
Execing config: overwatch
exec: couldn't exec overwatch

really don't know what else it could be. I am pretty sure it is the extension of the file.
trìpáz  [Δημιουργός] 15 Απρ 2020, 7:43 
I tried with the two scripts by copying them from the guide and it works for me. So I do think its an extension problem
trìpáz  [Δημιουργός] 15 Απρ 2020, 7:42 
I think it is still a extension problem. does the exec overwatch auto suggest completion in console? if not the best way to be sure that you have a .cfg file is to just copy the autoexec.cfg file rename it to overwatch erase all contents and paste the overwatch script inside it.
7UP 15 Απρ 2020, 7:18 
it seems that only "exec autoexec" works, "exec overwatch" does not work and appears on the console: "window resized
] exec overwatch
exec: couldn't exec overwatch "
7UP 14 Απρ 2020, 17:45 
ok, in that same option that appeared marked "do not show hidden masses, units and files" I changed it to "show". When I enter the game it appears on the console: "!!! autoexec.cfg loaded". But when I open the demo it appears on the console "exec: couldn't exec overwatch.cfg
Achievements disabled: demo playing. "
I don't know if I have to restart now after checking the "show hidden folders" option. I'll try
trìpáz  [Δημιουργός] 14 Απρ 2020, 17:07 
could you also check if your console autocompletes/suggests the overwatch and autoexec when you start typing in console. For example if you type exec conf you should see 3 possible files already listed in a drop down from console. config.360 config and config_default.
The same should happen when you type exec ov -> it should show exec overwatch as a possible autocomplete. If it does not the file extension is wrong
trìpáz  [Δημιουργός] 14 Απρ 2020, 16:58 
do you get the echo "!!! overwatch.cfg loaded !!!" in the console when you execute (exec overwatch)?
Also make sure your config files have the right extension ( .cfg ) not .cfg.cfg or .cfg.txt. If you have file extensions hidden in windows then show them by going to ->This PC (the part where you see all your hard drives) and inside explorer file menu select File->Change Folder and search options. Go to the view tab and uncheck the box for "Hide extensions for known file types"