Advertisement
Guest User

Untitled

a guest
Jun 29th, 2015
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.80 KB | None | 0 0
  1. //Crosshair Color Switch
  2.  
  3. alias color "red"
  4. alias "red" "cl_crosshaircolor 0; alias color orange"
  5. alias "orange" "cl_crosshaircolor 5;cl_crosshaircolor_b 9;cl_crosshaircolor_r 242;cl_crosshaircolor_g 141; alias color yellow"
  6. alias "yellow" "cl_crosshaircolor 2; alias color green"
  7. alias "green" "cl_crosshaircolor 1; alias color darkgreen"
  8. alias "darkgreen" "cl_crosshaircolor 5;cl_crosshaircolor_b 9;cl_crosshaircolor_r 18;cl_crosshaircolor_g 145; alias color cyan"
  9. alias "cyan" "cl_crosshaircolor 4; cl_crosshaircolor_b 250; cl_crosshaircolor_r 50; cl_crosshaircolor_g 250; alias color blue"
  10. alias "blue" "cl_crosshaircolor 3; alias color purple"
  11. alias "purple" "cl_crosshaircolor 5;cl_crosshaircolor_b 255;cl_crosshaircolor_r 150;cl_crosshaircolor_g 0; alias color pink"
  12. alias "pink" "cl_crosshaircolor 5;cl_crosshaircolor_b 255;cl_crosshaircolor_r 255;cl_crosshaircolor_g 0; alias color black"
  13. alias "black" "cl_crosshaircolor 5;cl_crosshaircolor_b 0;cl_crosshaircolor_r 0;cl_crosshaircolor_g 0; alias color white"
  14. alias "white" "cl_crosshaircolor 5;cl_crosshaircolor_b 255;cl_crosshaircolor_r 255;cl_crosshaircolor_g 255; alias color red"
  15. bind f6 color
  16.  
  17.  
  18. //Crosshair styles
  19.  
  20. alias xhair "style1"
  21. alias "style1" "cl_crosshairalpha 200; cl_crosshairdot 1; cl_crosshairgap 0; cl_crosshairsize 5; cl_crosshairstyle 2; cl_crosshairthickness 1; cl_fixedcrosshairgap 3; alias xhair style2"
  22. alias "style2" "cl_crosshairalpha 120; cl_crosshairdot 0; cl_crosshairgap 0; cl_crosshairsize 3; cl_crosshairstyle 4; cl_crosshairthickness 1; cl_fixedcrosshairgap 3; alias xhair style3"
  23. alias "style3" "cl_crosshairalpha 200; cl_crosshairdot 0; cl_crosshairgap -3; cl_crosshairsize 1; cl_crosshairstyle 2; cl_crosshairthickness 4; cl_fixedcrosshairgap -3; alias xhair style4"
  24. alias "style4" "cl_crosshairalpha 200; cl_crosshairdot 1; cl_crosshairgap 0; cl_crosshairsize 0; cl_crosshairstyle 2; cl_crosshairthickness 2; cl_fixedcrosshairgap 3; alias xhair style1"
  25.  
  26. bind f7 xhair
  27.  
  28.  
  29. //Adjust Radar Size
  30.  
  31. bind KP_MINUS "cl_radar_scale 0.3"
  32. bind KP_PLUS "cl_radar_scale 0.7"
  33.  
  34.  
  35. //Bhop
  36.  
  37. alias bhop "bhopoff";
  38. alias "bhopoff" "bind mwheelup invprev; bind mwheeldown invnext; alias bhop bhopon"
  39. alias "bhopon" "bind mwheelup +jump; bind mwheeldown +jump; alias bhop bhopoff"
  40. bind f5 bhop
  41.  
  42.  
  43. //Disable Help Messages
  44.  
  45. gameinstructor_enable "0"
  46. cl_autohelp "0"
  47. cl_showhelp "0"
  48.  
  49. //Show net graph on scorescreen
  50.  
  51. net_graph "1"
  52. net_graphpos "2"
  53. net_graphheight "9999"
  54. bind "TAB" "+scorenet"
  55. alias "+scorenet" "+showscores; net_graphheight 0"
  56. alias "-scorenet" "-showscores; net_graphheight 9999"
  57.  
  58. //Disable MOTD
  59.  
  60. cl_disablehtmlmotd "1"
  61. cl_downloadfilter "nosounds"
  62.  
  63.  
  64. //Damage Recount
  65.  
  66. developer 1
  67. con_filter_enable 2
  68. con_filter_text_out "Player:"
  69. con_filter_text "damage"
  70.  
  71. echo "Time to Rape some Children"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement