viewing paste Unknown #20734 | Text

Posted on the
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
//Pyrly (IspiraGaming)'s CS:GO autoexec.
//Lines that start with two slashes are comments, and are completely ignored by the game.
//====================== WARNING ======================
//=   THIS WILL OVERWRITE YOUR CURRENT SETTINGS!      =
//=   REMOVE OR COMMENT OUT ANYTHING YOU DON'T WANT!  =
//====================== WARNING ======================
//If you don't understand a setting, don't touch it!
 
//NETWORK -- This section should remain for the most part untouched.
cl_cmdrate 128
cl_updaterate 128
rate 128000
cl_interp 0
cl_interp_ratio 1
 
//Set this to whatever is comfortable for you.
mm_dedicated_search_maxping 75
 
//CONTROLS -- This is where I put some controls I want to be permanent.
//My voice chat key.
unbind x
bind x +voicerecord
 
//I use my mousewheel for bhopping
unbind mwheelup;unbind mwheeldown
bind mwheelup +jump;bind mwheeldown +jump
 
//This only applies to mouses that have extra buttons on the sides.
unbind mouse4;unbind mouse5
 
//I set my side mouse buttons to smokes and flashes.
bind mouse4 "use weapon_smokegrenade"
bind mouse5 "use weapon_flashbang"
 
//VOLUME -- I like to set up some volume aliases for easy volume changes in game.
alias lowvol "volume 0.1"
alias normvol "volume 0.2"
alias mutevol "volume 0"
alias canthear "volume 0.4"
 
//Increase or decrease this number to change the volume of voice chat in relation to game volume
//Does NOT affect your send (microphone) volume!
voice_scale 1.0
 
//GAMEPLAY -- This is mostly personal preference.
//Mouse sensitivity - The CPI of my mouse is 1600.
sensitivity 0.5625
 
//Makes weapon names in your in-game inventory colored.
cl_loadout_colorweaponnames 1
 
//Gets rid of the annoying frozen camera when you die.
cl_disablefreezecam 1
 
//I got tired of community servers playing ads, this prevents that.
cl_disablehtmlmotd 1
 
//Make sure you don't automatically switch to weapons you pick up.
cl_autowepswitch 0
 
//Crosshair -- This is my crosshair, I got it from the youtuber Yellow (https://www.youtube.com/user/CYellowan).
cl_crosshairalpha "180"
cl_crosshaircolor "5"
cl_crosshaircolor_b "0"
cl_crosshaircolor_r "0"
cl_crosshaircolor_g "0"
cl_crosshairdot "0"
cl_crosshairgap "0"
cl_crosshairsize "4"
cl_crosshairstyle "4"
cl_crosshairusealpha "1"
cl_crosshairthickness "3"
cl_fixedcrosshairgap "0"
cl_crosshair_outlinethickness "0"
cl_crosshair_drawoutline "0"
 
//Viewmodel -- This is my custom viewmodel.
cl_viewmodel_shift_left_amt "0.500000"
cl_viewmodel_shift_right_amt "0.250000"
viewmodel_fov "68.000000"
viewmodel_offset_x "1.000000"
viewmodel_offset_y "-2.0"
viewmodel_offset_z "-2.0"
viewmodel_presetpos "0"
cl_bob_lower_amt "5.000000"
cl_bobamt_lat "0.100000"
cl_bobamt_vert "0.100000"
cl_bobcycle "0.98"
 
//SCRIPTS -- These are little useful things, I believe I found them all on Banana Gaming, but I edited some.
//Show netgraph when checking scoreboard
net_graph "1"
net_graphheight "9999"
alias "+scorenet" "+showscores; net_graphheight 0"
alias "-scorenet" "-showscores; net_graphheight 9999"
bind "TAB" "+scorenet"
 
//Display damage given after death
//You have to press F5 to enable/disable it by default
alias displaydamage "displaydamage_on"
alias displaydamage_on "con_filter_text Damage Given To; con_filter_text_out Player:; con_filter_enable 2; developer 1; playvol buttonsblip1 0.5; alias displaydamage "displaydamage_off""
alias displaydamage_off "con_filter_enable 0; developer 0; playvol buttonsblip2 0.5; alias displaydamage "displaydamage_on""
//You can change the default key from F5 here.
bind "f5" "displaydamage"
 
//Enable and disable voice chat
//The key P will turn voice chat off and display a team message saying so.
//The key O will turn it back on and display a team message saying so.
//Pressing X (my voice chat key) will always turn voice back on even if it's disabled.
alias cutthatshit "voice_enable 0; say_team Voice chat [DISABLED]"
alias uncutit "voice_enable 1; say_team Voice chat [ENABLED]"
//You can change your binds here, make sure if your voice chat key is different you change X to whatever you set your voice chat key to.
bind p "cutthatshit"
bind o "uncutit"
bind x "+voicerecord;voice_enable 1"
 
//END
//This line is what makes it work. It will also cause the game to overwrite any setting previously set with the value in this cfg, so be careful!
host_writeconfig
 
Viewed 1008 times, submitted by IntelligenceExalted.