Advertisement
DJ_Pau1

combinationscript.cfg

Jul 25th, 2015
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.20 KB | None | 0 0
  1. echo "Combination Spy Script Loaded"
  2.  
  3.  
  4. //=============================================================================================================================================
  5. // WEAPON-SPECIFIC VIEWMODEL, SENSITIVITY, FOV, & CROSSHAIR SCRIPT*
  6. //=============================================================================================================================================
  7. // Pressing "1" brings out the Revolver(/Amby/Enforcer), hide the gun, turn your FOV to 75, and set the sensitivity to 1.
  8. // Pressing "3" brings out the Knife; sets the FOV back to 90; sensitivity to "2.7128" (max in-game sens before pixel skipping at 1080p).
  9. // Pressing "2" brings out the sapper; attacking with the sapper will say "Sapping" to your team in the chat.
  10. // Attacking with any weapon flashes to a smaller crosshair type and flashes the color between green and pink.
  11. // faster reload time with +reload instead of cl_autoreload 1
  12.  
  13. // Tweak to your liking.
  14. // * THIS SCRIPT REPLACES THE VIEWMODEL SCRIPT ABOVE. DO NOT USE BOTH TOGETHER!
  15.  
  16.  
  17.  
  18. //xhair type toggle // cl_crosshair_file = type / cl_crosshair_scale = size
  19. //=========================================================
  20. alias dotxhairtype "dotxhairtypeb"
  21. alias dotxhairtypeb "cl_crosshair_file crosshair5;cl_crosshair_scale 14;alias dotxhairtype dotxhairtyper"
  22. alias dotxhairtyper "cl_crosshair_file crosshair2;cl_crosshair_scale 32;alias dotxhairtype dotxhairtypeb"
  23. //=========================================================
  24.  
  25. //xhair shot color toggle
  26. //=========================================================
  27. alias dotxhairshotcolor "dotxhairshotcolorb"
  28. alias dotxhairshotcolorb "cl_crosshair_blue 255; cl_crosshair_green 0; cl_crosshair_red 255;alias dotxhairshotcolor dotxhairshotcolorr" // magenta
  29. alias dotxhairshotcolorr "cl_crosshair_blue 0; cl_crosshair_green 255; cl_crosshair_red 0;alias dotxhairshotcolor dotxhairshotcolorb" // green
  30. //=========================================================
  31.  
  32.  
  33. // Code:
  34.  
  35. bind mouse1 vmon
  36. fov_desired 90
  37.  
  38. //sapper
  39. alias vmsap "bind mouse1 +sap"
  40. alias +sap "+attack;dotxhaircolor;dotxhairtype;r_drawviewmodel 1;sapalert"
  41. alias -sap "-attack;dotxhaircolor;dotxhairtype"
  42. //alias sapalert "say_team sapping"
  43.  
  44. alias +sapper "slot2;dotxhairtype;dotxhaircolor;sensitivity 2.7128;r_drawviewmodel 1;vmon;fov_desired 90;viewmodel_fov 99"
  45. alias -sapper "dotxhairtype;dotxhaircolor"
  46. bind "2" "+sapper;vmsap" //rebind to liking
  47.  
  48.  
  49. //knife
  50. alias vmon "bind mouse1 +viewmodelon"
  51. //alias +viewmodelon "+attack;dotxhairtype;dotxhaircolor;r_drawviewmodel 1;spec_next"
  52. //alias -viewmodelon "-attack;dotxhairtype;dotxhaircolor;r_drawviewmodel 1"
  53.  
  54. alias +equip3 ";vmon;slot3;sensitivity 2.7128;dotxhairtype;dotxhaircolor;cl_autoreload 1;m_yaw .0220000000;viewmodel_fov 99;r_drawviewmodel 1;alias wpn slot3"
  55. alias -equip3 "dotxhaircolor;dotxhairtype;fov_desired 90;r_drawviewmodel 1"
  56. bind "3" +equip3 //rebind to liking
  57.  
  58.  
  59. //gun
  60. //alias vmoff "bind mouse1 +viewmodeloff"
  61. alias +viewmodeloff "+attack;dotxhairtype;dotxhaircolor;r_drawviewmodel 0;spec_next;+reload"
  62. alias -viewmodeloff "-attack;dotxhairtype;dotxhaircolor;r_drawviewmodel 0"
  63.  
  64. alias +equip1 "slot1;dotxhairtype;dotxhaircolor;r_drawviewmodel 1;sensitivity 1.0;viewmodel_fov 99"
  65. alias -equip1 "dotxhaircolor;dotxhairtype;sensitivity 1;r_drawviewmodel 0;vmoff"
  66. bind "1" +equip1 //rebind to liking
  67.  
  68.  
  69. //watch
  70. bind "mouse2" "+spycustomattack2"
  71. alias +spycustomattack2 ";+attack2;dotxhaircolor;dotxhairtype;r_drawviewmodel 1;spec_prev;+reload"
  72. alias -spycustomattack2 "-attack2;dotxhaircolor;dotxhairtype;r_drawviewmodel 1"
  73.  
  74.  
  75. // Transparent Viewmodels version
  76. alias +viewmodelon "+attack;dotxhairtype;dotxhaircolor;r_drawviewmodel 1;spec_next;+reload;glow_outline_effect_enable 1"
  77. alias -viewmodelon "-attack;dotxhairtype;dotxhaircolor"
  78.  
  79. // alias +viewmodeloff "+attack;dotxhairtype;dotxhaircolor;r_drawviewmodel 0;dotxhairshotcolor;spec_next;viewmodel_fov 99;+reload;glow_outline_effect_enable 0"
  80. // alias -viewmodeloff "-attack;dotxhairtype;dotxhaircolor;r_drawviewmodel 0;dotxhairshotcolor"
  81.  
  82. alias +sap "+attack;dotxhaircolor;dotxhairtype;r_drawviewmodel 1;sapalert;+reload"
  83. alias -sap "-attack;dotxhaircolor;dotxhairtype"
  84. // alias sapalert "say_team sapping"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement