Guest User

demosupport.cfg

a guest
Jul 13th, 2016
433
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. //---------------------------
  2. //------Demo support Script---
  3. //---------------------------
  4. //put exec demosupport.cfg into your autoexec
  5. // 0 - Manual, 1 - Auto-record competitive matches, 2 - Auto-record all matches, 3 - Auto-record tournament (mp_tournament) matches
  6. //this script goes of the manual option to start and stop using 1 key. this is because at this time the mp_tournament mode records the whole damn game and not just rup to end.
  7. ds_enable 0
  8.  
  9. //start and stop toggle bind
  10. alias record "ds_record; alias ds stop"
  11. alias stop "ds_stop; alias ds record"
  12. alias ds record
  13. bind f6 ds
  14.  
  15. //bookmarks
  16. bind f7 "ds_mark"
  17.  
  18. //autodelete
  19. //deletes demos with no mark
  20. //not advised for league play
  21. ds_autodelete 1
  22.  
  23. //directory
  24. // use a /foldername to direct demos a diferent folder eg demos/march
  25. ds_dir demos
  26.  
  27. //screenshot of scoreboard record stopped
  28. ds_screens 0
  29.  
  30.  
  31. echo -------------------------
  32. echo Demo support ready!
  33. echo -------------------------
Add Comment
Please, Sign In to add comment