Advertisement
Guest User

idk

a guest
Feb 13th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.88 KB | None | 0 0
  1. clear
  2.  
  3. echo "----------------------"
  4. echo "Welcome to Counterstrike: Global Offensive."
  5. echo "----------------------"
  6. echo ""
  7.  
  8. // Mouse
  9. m_rawinput "1"
  10. m_pitch "0.022"
  11. m_customaccel "0"
  12. m_mouseaccel1 "0"
  13. m_mouseaccel2 "0"
  14.  
  15.  
  16. echo ""
  17. echo "Mouse fix done!"
  18. echo ""
  19.  
  20. //Arrow binds
  21.  
  22. bind uparrow "toggle net_graph 0 1" //Toggle net_graph
  23. bind downarrow "toggle voice_scale 1 .5 .25 0" //Toggle ingame voice
  24. bindtoggle rightarrow "cl_righthand"
  25. bindtoggle leftarrow "cl_showfps"
  26.  
  27. echo ""
  28. echo "Arrow binds done!"
  29. echo ""
  30.  
  31. // other binds
  32.  
  33. bind f12 "jpeg"
  34.  
  35. echo ""
  36. echo "Other binds done!"
  37. echo ""
  38.  
  39. // Friendly binds
  40.  
  41. bind p "say gl & hf"
  42. bind o "say gh"
  43. bind l "say gg & wp"
  44. bind k "say_team drop / eco"
  45.  
  46. echo ""
  47. echo "Friendly binds done!"
  48. echo ""
  49.  
  50. //Show net_graph when Tab is pressed (tab = scoreboard)
  51.  
  52. alias +scores "net_graph 3; +showscores"
  53. alias -scores "net_graph 0; -showscores"
  54.  
  55. bind tab +scores
  56.  
  57. echo ""
  58. echo "Scoreboard netgraph done!"
  59. echo ""
  60.  
  61. //No sounds or movies in the motd
  62.  
  63. cl_disablehtmlmotd "1"
  64. cl_downloadfilter "nosounds"
  65.  
  66. echo ""
  67. echo "No commercials done!"
  68. echo ""
  69.  
  70. // Server rates: about 102 ticks
  71.  
  72. mm_dedicated_search_maxping "30"
  73.  
  74. cl_interp "0"
  75. cl_interp_ratio "1"
  76. cl_cmdrate "128"
  77. cl_updaterate "128"
  78. rate "104000"
  79. fps_max "999"
  80. cl_lagcomp_errorcheck "1"
  81. cl_lagcompensation "1"
  82. cl_smooth "0"
  83. cl_smoothtime "0.01"
  84.  
  85. echo ""
  86. echo "Rates done!"
  87. echo ""
  88.  
  89. //Sound - less delayed, better sound
  90.  
  91. windows_speaker_config "1"
  92. snd_mixahead "0.05"
  93. snd_musicvolume "0"
  94. snd_headphone_pan_exponent "2"
  95. snd_headphone_pan_radial_weight "1"
  96. snd_rear_headphone_position "90"
  97. voice_mixer_volume 0.3
  98.  
  99. echo ""
  100. echo "Sound done!"
  101. echo ""
  102.  
  103. // Remove some of the bobbing
  104. // and mirror source movement
  105.  
  106. viewmodel_offset_x "2"
  107. viewmodel_offset_y "2"
  108. viewmodel_offset_z "-2"
  109. viewmodel_fov "65"
  110.  
  111. cl_viewmodel_shift_left_amt "0"
  112. cl_viewmodel_shift_right_amt "0"
  113.  
  114. cl_bob_lower_amt "5"
  115. cl_bobamt_lat "0.1"
  116. cl_bobamt_vert "0.1"
  117. cl_bobcycle "2"
  118.  
  119. echo ""
  120. echo "Viewmodel done!"
  121. echo ""
  122.  
  123. // Some other stuff
  124.  
  125. cl_autowepswitch "0" // We dont want to suddenly switch weapon when walking/shooting
  126. cl_autohelp "0" // Because we know the game
  127. cl_showhelp "0"
  128. cl_righthand "1" // Some prefer left hand, I prefer right
  129. cl_forcepreload "1"
  130.  
  131. // Crosshair Yay
  132.  
  133. cl_crosshairalpha "255"
  134. cl_crosshaircolor "5"
  135. cl_crosshaircolor_b "255"
  136. cl_crosshaircolor_r "255"
  137. cl_crosshaircolor_g "0"
  138. cl_crosshairdot "1"
  139. cl_crosshairgap "0"
  140. cl_crosshairsize "5"
  141. cl_crosshairstyle "4"
  142. cl_crosshairusealpha "1"
  143. cl_crosshairthickness "1"
  144. cl_fixedcrosshairgap "0"
  145. cl_crosshair_outlinethickness "0"
  146. cl_crosshair_drawoutline "0"
  147.  
  148. echo ""
  149. echo "Other stuff done!"
  150. echo ""
  151.  
  152. host_writeconfig // force all of these commands, else they can be overwritten
  153. echo "------------------------------"
  154. echo "Config loaded"
  155. echo "------------------------------"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement