emsixteen

EmSixTeen

Oct 4th, 2009
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.49 KB | None | 0 0
  1. // Controls
  2.  
  3. // Right arrow - fast forwards through demos (press several times to go through faster)
  4. // Left arrow - slow down demo playback (press several times to slow down more)
  5. // Down arrow - returns you to normal playback speed
  6. // Up arrow - shows you the current scores
  7. // , - toggles between third and first person view
  8. // . - turns the hud on and off
  9. // l - toggles crosshair off and on
  10. // numpad insert - Turns off recording/screenshot capture (cl_avidemo "0")
  11. // numpad downarrow - Captures screenshots at 60 FPS (cl_avidemo "60")
  12. // numpad end - Captures screenshots at 30 FPS (cl_avidemo "30")
  13. // F10 - execs normal playing settings (emsixteenql.cfg)
  14. // F9 - Does a vid_restart
  15.  
  16. // RAZ3R's demo replay script
  17.  
  18. set time0 "timescale 0.10;set timeup vstr time1"
  19. set time1 "timescale 0.25;set timedown vstr time0;set timeup vstr time2"
  20. set time2 "timescale 0.50;set timedown vstr time1;set timeup vstr time3"
  21. set time3 "timescale 0.75;set timedown vstr time2;set timeup vstr time4"
  22. set time4 "timescale 1.00;set timedown vstr time3;set timeup vstr time5"
  23. set time5 "timescale 2.00;set timedown vstr time4;set timeup vstr time6"
  24. set time6 "timescale 5.00;set timedown vstr time5;set timeup vstr time7"
  25. set time7 "timescale 10.0;set timedown vstr time6;set timeup vstr time8"
  26. set time8 "timescale 25.0;set timedown vstr time7;set timeup vstr time9"
  27. set time9 "timescale 50.0;set timedown vstr time8;set timeup vstr time10"
  28. set time10 "timescale 100;set timedown vstr time9"
  29. vstr time4
  30. set timedown vstr time3
  31. set timeup vstr time5
  32. bind leftarrow "vstr timedown"
  33. bind rightarrow "vstr timeup"
  34. bind uparrow "+scores"
  35. bind tab "+scores"
  36. bind downarrow "timescale 1;set timedown vstr time3;set timeup vstr time5"
  37. bind , "toggle cg_thirdPerson"
  38. bind . "toggle cg_draw2D"
  39.  
  40.  
  41. // EmSixTeen's added graphics..
  42.  
  43. r_contrast "1.4" // looks like a movie :D
  44. r_picmip "0"
  45. r_fullscreen "1"
  46. r_gamma "1.2"
  47. cg_lagometer "0"
  48. cg_drawfps "0"
  49. cg_simpleitems "0"
  50. cg_kickscale "1" // Stops the screen from shaking when taking damage
  51. cg_bob "1" // Makes your screen stay straight when jumping and hitting the ground
  52. cg_levelTimerDirection "0" // 0 = up, 1 = down
  53. cg_smokeRadius_GL "1" // Grenade smoke size
  54. cg_smokeRadius_RL "1" // Rocket smoke size
  55. cg_smoke_SG "1" // Shotgun smoke
  56. s_ambient "1" // Removes ambient sounds like rain on qztourney7
  57. r_subdivisions "4"
  58. cg_fov "105"
  59. cg_guny "0"
  60. cg_gunx "0"
  61. cg_gunz "0"
  62. cg_drawgun "1"
  63. cg_drawcrosshair "0"
  64. cg_crosshairsize "20"
  65. set xhairon "cg_drawcrosshair 2"
  66. set xhairoff "cg_drawcrosshair 0"
  67. bind l "vstr xhairoff;bind l vstr xhairon"
  68.  
  69. cg_plasmastyle "0"
  70. cg_lightningstyle "5"
  71.  
  72. // rail thingy
  73.  
  74. cg_railstyle "1" // required to have this effect
  75. r_railSegmentLength "0.1" // warning: too low values will crash browser
  76. r_railCoreWidth "32" // the "corona" generated by the intense rail heat!
  77. r_railWidth "16" // high values (try 512) offer much LULZ!!
  78. color1 "6" // can be whatever you want.
  79. color2 "7" // can be whatever you want, but a white core makes it look like it's glowing.
  80. cg_railTrailTime "1500" // synced to charge-up
  81.  
  82. bind "F9" "vid_restart"
  83. bind "F10" "exec emsixteenql.cfg"
  84. bind "F11" "exec cfgs/specanddemo.cfg"
  85.  
  86. bind "kp_ins" cl_avidemo "0"
  87. bind "kp_downarrow" cl_avidemo "60"
  88. bind "kp_end" cl_avidemo "30"
  89. bind "kp_leftarrow" "vstr prev-demo"
  90. bind "kp_rightarrow" "vstr next-demo"
  91.  
  92. //vid_restart
  93.  
  94. echo Demo watching script
Add Comment
Please, Sign In to add comment