Advertisement
emsixteen

Untitled

Mar 2nd, 2014
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.27 KB | None | 0 0
  1. // EmSixTeen's config for tricking and Race mode in Quake Live
  2. // Last updated: 01/03/2014
  3.  
  4. // Visual
  5. r_picmip "1"
  6. r_gamma "1.05"
  7. r_contrast "0"
  8. cg_speedometer "3" // UPS meter below crosshair
  9. cg_crosshaircolor "3"
  10. cg_drawcrosshair "6"
  11. cg_crosshairsize "18"
  12. cg_fov "110"
  13. cg_hudfiles "ui/hud2.txt" // QL's default 'small' HUD
  14. cg_drawgun "3" // 3 shows transparent weapon models
  15. cg_gunx "1"
  16. cg_guny "-1"
  17. cg_gunz "1"
  18. sensitivity ".9"
  19.  
  20. // Game
  21. team "red"
  22. sv_fps "125"
  23.  
  24. // Tricking Binds
  25. bind "mouse2" ""
  26. bind "mouse3" "kill;vstr v_demorecord" // Suicide, start new temp demo
  27. bind "mouse4" "vstr v_demorecord" // Start new temp demo without suiciding
  28. bind "mouse5" ""
  29.  
  30. // General binds
  31. bind "/" "say o/"
  32. bind "mwheelup" "say nice"
  33. bind "mwheeldown" "say :)"
  34. bind "-" "team 1" // Join game
  35. bind "=" "team s" // Go spec
  36.  
  37. // Gun binds
  38. unbind "1"
  39. unbind "2"
  40. unbind "3"
  41. unbind "4"
  42. unbind "q"
  43. unbind "e"
  44. unbind "r"
  45. unbind "f"
  46. unbind "v"
  47. unbind "z"
  48. unbind "\"
  49. bind "1" "weapon 1" // Gauntlet
  50. bind "2" "weapon 2" // MG
  51. bind "4" "weapon 4" // GL
  52. bind "q" "weapon 5" // RL
  53. bind "r" "weapon 8" // PG
  54. bind "f" "weapon 7" // RG
  55. bind "," "cg_gunx 1;cg_guny 1;cg_gunz 1;cg_drawgun 3"
  56.  
  57. // Demo recording script to toggle 5 temp recordings
  58. set "v_demorecord" "vstr v_demo1"
  59. set "v_demo1" "record race/EmSixTeen-tempdemo1 ; set v_demorecord vstr v_demo2 ; print ^5Recording temp demo ^41"
  60. set "v_demo2" "record race/EmSixTeen-tempdemo2 ; set v_demorecord vstr v_demo3 ; print ^5Recording temp demo ^42"
  61. set "v_demo3" "record race/EmSixTeen-tempdemo3 ; set v_demorecord vstr v_demo4 ; print ^5Recording temp demo ^43"
  62. set "v_demo4" "record race/EmSixTeen-tempdemo4 ; set v_demorecord vstr v_demo5 ; print ^5Recording temp demo ^44"
  63. set "v_demo5" "record race/EmSixTeen-tempdemo5 ; set v_demorecord vstr v_demo1 ; print ^5Recording temp demo ^45"
  64.  
  65. // Turn on/off marks
  66. set "v_marks" "vstr v_marks_off"
  67. set "v_marks_off" "cg_marks 0 ; set v_marks vstr v_marks_on ; print ^5Marks ^1OFF"
  68. set "v_marks_on" "cg_marks 1 ; set v_marks vstr v_marks_off ; print ^5Marks ^2ON"
  69. bind "." "vstr v_marks"
  70.  
  71. // End
  72. wait
  73. reconnect
  74. wait
  75. print "Tricking settings"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement