Guest User

Untitled

a guest
Jul 20th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.63 KB | None | 0 0
  1. //----------------------------- MISC -------------------------------\\
  2. //------------------------------------------------------------------\\
  3. sv_cheats "1"
  4. sv_showimpacts "0"
  5. sv_showimpacts_time "2.5"
  6.  
  7. //---------------------------- BINDS -------------------------------\\
  8. //------------------------------------------------------------------\\
  9. bind "SPACE" "demo_togglepause" // pause/play demo
  10. bind "c" "r_cleardecals" // get rid of bulletholes and black residue from grenade explosions
  11. bind "i" "toggle sv_showimpacts" // show bullet impacts on walls, playermodels
  12. bind "r" "demo_resume" // resume demo playback (if demo gets stuck)
  13. bind "v" "toggle weapon_debug_spread_show" // show weapon inaccuracy/spread
  14. bind "z" "incrementvar r_drawothermodels 1 2 1" // kind of like x-ray
  15. bind "x" "toggle spec_show_xray" // turn x-ray vision on / off
  16.  
  17. //----------------------- TIMESCALE BINDS --------------------------\\
  18. //------------------------------------------------------------------\\
  19. // Keypad Demo Timescale binds (Num-Pad 1-9)
  20. // controls the demo playback time. Going below 0.1 is not recommended
  21. bind kp_end "demo_timescale 0.1; sv_showimpacts_time 0.1"
  22. bind kp_downarrow "demo_timescale 0.2; sv_showimpacts_time 0.2"
  23. bind kp_pgdn "demo_timescale 0.3; sv_showimpacts_time 0.3"
  24. bind kp_leftarrow "demo_timescale 0.4; sv_showimpacts_time 0.4"
  25. bind kp_5 "demo_timescale 0.5; sv_showimpacts_time 0.5"
  26. bind kp_rightarrow "demo_timescale 0.6; sv_showimpacts_time 0.6"
  27. bind kp_home "demo_timescale 0.7; sv_showimpacts_time 0.7"
  28. bind kp_uparrow "demo_timescale 0.8; sv_showimpacts_time 0.8"
  29. bind kp_pgup "demo_timescale 0.9; sv_showimpacts_time 0.9"
  30. bind kp_ins "demo_timescale 1; sv_showimpacts_time 1" // Normal speed
  31. bind kp_enter "demo_timescale 1; sv_showimpacts_time 1" // Normal speed
  32. bind kp_plus "demo_timescale 2" // fast forward
  33. bind kp_minus "demo_timescale 4" // fast forward
  34.  
  35. //------------------------- ZOOM BINDS -----------------------------\\
  36. //------------------------------------------------------------------\\
  37. bind UPARROW "fov_cs_debug 33" // zoom view in
  38. bind DOWNARROW "fov_cs_debug 0" // zoom view out
  39.  
  40. echo _________________________________________________________________
  41. echo _________________________d e m o c o n f i g l o a d e d______
  42. echo _________________________________________________________________
Add Comment
Please, Sign In to add comment