Advertisement
Brick

autoexec.cfg

Oct 7th, 2015
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.79 KB | None | 0 0
  1. clear;
  2. echo "--------------------------------------------------";
  3. echo "-------------Executing Custom Config--------------";
  4. echo "--------------------------------------------------";
  5. echo "--------------------------------------------------";
  6. echo "---------------Launch Params To Use---------------";
  7. echo -full -w 1920 -h 1080 -nojoy -novid -high -nod3d9ex
  8. echo "------------Loading Viewmodel Settings------------";
  9. viewmodel_presetpos 0;
  10. viewmodel_fov 90;
  11. viewmodel_offset_x -10;
  12. viewmodel_offset_y 10;
  13. viewmodel_offset_z -10;
  14.  
  15. echo "---------------Loading Hud Settings---------------";
  16. cl_radar_always_centered 0
  17. hud_scaling 0.7;
  18. hud_showtargetid 1;
  19. cl_hud_background_alpha 0;
  20. cl_hud_playercount_showcount 0;
  21. cl_hud_color 3;
  22.  
  23. echo "------------Loading Crosshair Settings------------";
  24.  
  25. cl_crosshair_drawoutline "1"
  26. cl_crosshair_dynamic_maxdist_splitratio "0.0"
  27. cl_crosshair_dynamic_splitalpha_innermod "1"
  28. cl_crosshair_dynamic_splitalpha_outermod "0.300000"
  29. cl_crosshair_dynamic_splitdist "5"
  30. cl_crosshair_outlinethickness "1"
  31. cl_crosshairalpha "235.000000"
  32. cl_crosshaircolor "5"
  33. cl_crosshaircolor_b "255"
  34. cl_crosshaircolor_g "255"
  35. cl_crosshaircolor_r "0"
  36. cl_crosshairdot "1"
  37. cl_crosshairgap "-4.000000"
  38. cl_crosshairgap_useweaponvalue "0"
  39. cl_crosshairscale "0"
  40. cl_crosshairsize "0.500000"
  41. cl_crosshairstyle "5"
  42. cl_crosshairthickness "1"
  43. cl_crosshairusealpha "1"
  44. cl_fixedcrosshairgap "0"
  45.  
  46.  
  47. echo "---------------Loading Mouse Settings-------------";
  48. sensitivity 1;
  49. m_rawinput 1;
  50. m_customaccel 0;
  51.  
  52. echo "-------------------Loading Binds------------------";
  53. bind "mouse4" "+jumpthrow";
  54. bind shift +sneak;
  55.  
  56. echo "------------------Loading Aliases-----------------";
  57. alias dc disconnect;
  58.  
  59. alias "+jumpthrow" "+jump;-attack";
  60. alias "-jumpthrow" "-jump";
  61.  
  62. alias +sneak "+speed; cl_radar_scale 0.8"
  63. alias -sneak "-speed; cl_radar_scale 0.3"
  64.  
  65. echo "------------Loading Graphics Settings-------------";
  66. fps_max 0;
  67. fps_max_menu 0;
  68. cl_showfps 1;
  69. r_drawtracers_firstperson 1;
  70. mat_monitorgamma 2.1;
  71. cl_forcepreload 1;
  72. cl_disablefreezecam 0;
  73. cl_disablehtmlmotd 1;
  74.  
  75. echo "------------Loading Net Graph Settings------------";
  76. net_graph 1;
  77. net_graphpos 1;
  78. net_graphheight 0;
  79. net_graphproportionalfont 0.5;
  80.  
  81. echo "------------Disabling Game Instructor-------------";
  82. cl_showhelp 0;
  83. cl_autohelp 0;
  84. gameinstructor_enable 0;
  85.  
  86. echo "-------------------Loading Other------------------";
  87. cl_autowepswitch 0;
  88. hud_showtargetid 1;
  89.  
  90.  
  91. echo "-------------------Saving Config------------------";
  92. host_writeconfig; // Save to config.cfg (fixes errors)
  93.  
  94. echo "--------------------------------------------------";
  95. echo "--------------------------------------------------";
  96. echo "----------Finished Loading Custom Config----------";
  97. echo "--------------------------------------------------";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement