Advertisement
House-MD

Untitled

Mar 27th, 2015
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.40 KB | None | 0 0
  1. bind = explode
  2. hud_combattext_batching_window 2
  3. bind b lastdisguise
  4.  
  5. bind mouse2 +attack2
  6. bind mouse1 +attack
  7.  
  8. -reload
  9.  
  10. //NULL-MOVEMENT SCRIPT. Used to ensure you never fumble about when evading - most comp players use a script like this
  11. // (prevents you from pressing two opposing directions, which would cause you to stop moving)
  12.  
  13. bind w +mfwd
  14. bind s +mback
  15. bind a +mleft
  16. bind d +mright
  17.  
  18. alias +mfwd "-back;+forward;alias checkfwd +forward"
  19. alias +mback "-forward;+back;alias checkback +back"
  20. alias +mleft "-moveright;+moveleft;alias checkleft +moveleft"
  21. alias +mright "-moveleft;+moveright;alias checkright +moveright"
  22. alias -mfwd "-forward;checkback; alias checkfwd noneb"
  23. alias -mback "-back;checkfwd;alias checkback noneb"
  24. alias -mleft "bind y sd; -moveleft;checkright;alias checkleft noneb"
  25. alias -mright "-moveright;checkleft;alias checkright noneb"
  26. alias checkfwd noneb
  27. alias checkback noneb
  28. alias checkleft noneb
  29. alias checkright noneb
  30. alias noneb ""
  31.  
  32. bind e medic
  33.  
  34. //fakes a reload. Hold to fully reload your gun
  35. alias "+fakereload" "slot1; +reload"
  36. alias "-fakereload" "slot3; -reload"
  37. bind r +fakereload
  38.  
  39. //Hit mouse3 to disguise as an enemy med, then again to switch to medigun in disguise
  40. bind mouse3 +MedicDisguise
  41. bind mouse5 +PhonyMedic
  42. alias leap "fx"
  43. alias +MedicDisguise "disguise 5 -1; slot2"
  44. alias -MedicDisguise "slot3"
  45. alias medic "play \vo\spy_medic01.mp3"
  46.  
  47. //Disguise as a friendly medic and takes out secondary, press once to disguise, then again when disguised to get out medigun
  48. //Use with DR to get behind them easier and more convincingly
  49. alias +PhonyMedic "disguise 5 -2; slot2"
  50. alias -PhonyMedic "slot3"
  51.  
  52. //Hit shift to zoom in, with amby or revolver etc
  53. bind shift +zoomer
  54. alias +zoomer zoomin
  55. alias -zoomer zoomout
  56. alias zoomin "fov_desired 75; viewmodel_fov 60"
  57. alias zoomout "fov_desired 90; viewmodel_fov 60"
  58.  
  59. //No more disappearing map bug crashes!
  60. cl_new_impact_effects 0
  61.  
  62. //fixed any map/player issues (Can also reveal hidden spies briefly, if your PC is quick enough to execute in <100 ms)
  63. alias fx "snd_restart; mat_reloadallmaterials; record fix; +jump; stop; hud_reloadscheme"
  64. bind ins fx
  65. alias +ducker "+duck; bind space leap"
  66. alias -ducker "-duck; bind space +jump"
  67.  
  68. //Funny little suicide script, bind it to any key you like for a quick escape
  69. alias sd "play \vo\spy_paincriticaldeath03.mp3; play \weapons\scatter_gun_shoot_crit.wav; kill"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement