Advertisement
Guest User

Untitled

a guest
Mar 19th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. //Misc
  2. sv_cheats "1"
  3. sv_showimpacts "0"
  4.  
  5. //Binds
  6. bind "kp_enter" "demo_togglepause"
  7. bind "kp_del" "toggle sv_showimpacts"
  8. bind "kp_slash" "toggle weapon_debug_spread_show"
  9. bind "kp_multiply" "toggle spec_show_xray"
  10.  
  11. //Replay
  12. bind "kp_rightarrow" "+fw"
  13. alias "+fw" "demo_timescale 30"
  14. alias "-fw" "demo_timescale 1"
  15.  
  16. bind "kp_5" "+fw2"
  17. alias "+fw2" "demo_timescale 10"
  18. alias "-fw2" "demo_timescale 1"
  19.  
  20. bind "kp_leftarrow" "+fw2"
  21. alias "+fw2" "demo_timescale 3"
  22. alias "-fw2" "demo_timescale 1"
  23.  
  24. bind "kp_ins" "demoui"
  25.  
  26. //Timescale Binds
  27. bind kp_home "demo_timescale 0.1;sv_showimpacts_time 0.1"
  28. bind kp_uparrow "demo_timescale 0.3;sv_showimpacts_time 0.3"
  29. bind kp_pgup "demo_timescale 0.5;sv_showimpacts_time 0.5"
  30. bind kp_end "demo_timescale 0.6;sv_showimpacts_time 0.6"
  31. bind kp_downarrow "demo_timescale 0.7;sv_showimpacts_time 0.7"
  32. bind kp_pgdn "demo_timescale 1;sv_showimpacts_time 1"
  33.  
  34. //Zoom Binds
  35. bind kp_plus "fov_cs_debug 33"
  36. bind kp_minus "fov_cs_debug 0"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement