0% found this document useful (0 votes)
828 views3 pages

Top 10 CFG Scripts For CS:GO

This document contains instructions and scripts for customizing settings and keybinds in Counter-Strike: Global Offensive. It includes scripts for modifying radar size, displaying netgraph, showing damage numbers, inspecting crosshair and viewmodel settings, and binding grenade selection to specific keys.

Uploaded by

Sir_Bruce_Lee
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
0% found this document useful (0 votes)
828 views3 pages

Top 10 CFG Scripts For CS:GO

This document contains instructions and scripts for customizing settings and keybinds in Counter-Strike: Global Offensive. It includes scripts for modifying radar size, displaying netgraph, showing damage numbers, inspecting crosshair and viewmodel settings, and binding grenade selection to specific keys.

Uploaded by

Sir_Bruce_Lee
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
You are on page 1/ 3

// COPY EVERYTHING AND PUT IN AUTOEXEC.

CFG
// REMEMBER TO PUT FORWARD SLASHES IN FRONT OF A BIND ROW TO DISABLE THE SCRIPT

// *********** 10 **********
//Increase Decrease Radar Size
alias "+radar" "+use; cl_radar_always_centered 1; cl_radar_scale 0.60"
alias "-radar" "-use; cl_radar_always_centered 0; cl_radar_scale 0.30"
bind "f" "+radar;+lookatweapon"
// BIND WHAVETER KEY YOU WANT OR JUST PUT // IN FRONT TO DISABLE THE SCRIPT

// *********** 9 **********
//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"
// BIND WHAVETER KEY YOU WANT OR JUST PUT // IN FRONT TO DISABLE THE SCRIPT

// *********** 8 **********
//Display Damage with Switch Script
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 buttons\blip1 0.5; alias
displaydamage "displaydamage_off""
alias displaydamage_off "con_filter_enable 0; developer 0; playvol buttons\blip2
0.5; alias displaydamage "displaydamage_on""
bind "f5" "displaydamage"
// BIND WHAVETER KEY YOU WANT OR JUST PUT // IN FRONT TO DISABLE THE SCRIPT

// *********** 7 **********
//Show crosshair Settings
alias "a1" clear
alias "a2" echo "*********************************************";
alias "a3" echo "YOUR CURRENT CROSSHAIR SETTINGS;"
alias "a4" echo "*********************************************";
alias "a5" developer 2
alias "a6" con_filter_enable 1
alias "a7" con_filter_text cl_crosshair
alias "a8" host_writeconfig //
alias "a9" con_filter_text cl_fix
alias "a10" host_writeconfig //
alias "a11" developer 0
alias "a12" con_filter_enable 0
alias "a13" showconsole
alias "showcrosshair" "a1;a2;a3;a4;a5;a6;a7;a8;a9;a10;a11;a12;a13"
bind ins "showcrosshair"
// BIND WHAVETER KEY YOU WANT OR JUST PUT // IN FRONT TO DISABLE THE SCRIPT

// *********** 6 **********
//Show viewmodel Settings
alias "b1" con_enable 1
alias "b2" toggleconsole
alias "b3" clear
alias "c1" echo "*********************************************";
alias "c2" echo "YOUR CURRENT VIEWMODEL SETTINGS;"
alias "c3" echo "*********************************************";
alias "b4" con_filter_enable 1
alias "b5" con_filter_text viewmodel_
alias "b6" developer 2
alias "b7" host_writeconfig vmodel_shareconf
alias "b8" con_filter_text_out Achievements
alias "b9" con_filter_text cl_bob_lower_amt
alias "b10" host_writeconfig vmodel_shareconf
alias "b11" confilter_text cl_bobamt_
alias "b12" host_writeconfig vmodel_shareconf
alias "b13" con_filter_text cl_bobcycle
alias "b14" host_writeconfig vmodel_shareconf
alias "b15" con_filter_enable 0
alias "b16" developer 0
alias "showviewmodels"
"b1;b2;b3;c1;c2;c3;b4;b5;b6;b7;b8;b9;b10;b11;b12;b13;b14;b15;b16"
bind del "showviewmodels"

// *********** 5 **********
//Show Help Lines
alias "-crosshairsmoke" "cl_crosshairsize 2;cl_crosshairdot 0;cl_crosshairgap -2"
alias "+crosshairsmoke" "cl_crosshairsize 1337;cl_crosshairdot 1;cl_crosshairgap
10"
// Change the first line so that crosshairsize, dot and gap are the same as your
own crosshair settings.
// Dont change the second line.
bind "mouse4" "+crosshairsmoke"
// BIND WHAVETER KEY YOU WANT OR JUST PUT // IN FRONT TO DISABLE THE SCRIPT

// *********** 4 **********
// Jump Throw Script
alias "+jumpthrow" "+jump;-attack"
alias "-jumpthrow" "-jump"
bind "mouse5" "+jumpthrow"
// BIND WHAVETER KEY YOU WANT OR JUST PUT // IN FRONT TO DISABLE THE SCRIPT

// EVERYTHING UNDER THIS LINE NEEDS TO BE TOGETHER OR THE SCRIPTS WILL NOT WORK

// *********** 3 **********
//How to pick up a specific grenade (E = HE) (Q = FLASH) (1 = SMOKE) (2 = FIRE) (3
= DECOY)
alias altE1 "use weapon_flashbang"
alias altE "bind q altE1" //IF YOU USE FRENCH KEYBOARD, CHANGE "Q" TO "A"
alias alt11 "use weapon_smokegrenade"
alias alt1 bind 1 alt11
alias alt22 "use weapon_molotov; use weapon_incgrenade"
alias alt2 bind 2 alt22
alias alt33 "use weapon_hegrenade"
alias alt3 bind e alt33
alias alt44 "use weapon_decoy"
alias alt4 bind 3 alt44
alias alt55 "buyanddrop"
alias alt5 bind g alt55
alias alt66 "disablevoice"
alias alt6 bind v alt66 //CHANGE THE "V" TO YOUR VOICE KEY
alias defE "bind e +use"
alias def1 "bind 1 slot1"
alias def2 "bind 2 slot2"
alias def3 "bind q lastinv" //IF YOU USE FRENCH KEYBOARD, CHANGE "Q" TO "A"
alias def4 "bind 3 slot3"
alias def5 "bind g drop"
alias def6 "bind v +voicerecord //CHANGE THE "V" TO YOUR VOICE KEY
alias +altbinds "alte; alt1; alt2; alt3; alt4; alt5; alt6"
alias -altbinds "defE; def1; def2; def3; def4; def5; def6"
bind alt +altbinds
// BIND WHAVETER KEY YOU WANT OR JUST PUT // IN FRONT TO DISABLE THE SCRIPT

// *********** 2 **********
// Buy and drop
alias "buyanddrop" "buy ak47; buy m4a1; buy m4a1_silencer; slot1; drop"
// This script is combined with the extra hotkeys for grenades.

// *********** 1 **********
// Disable in-game voice + no rebinds needed
alias "disablevoice" "voice_chat"
alias "voice_chat" "chat_1"
alias "chat_1" "voice_enable 1; playvol buttons\blip1 0.5; alias voice_chat chat_0"
alias "chat_0" "voice_enable 0; playvol buttons\blip2 0.5; alias voice_chat chat_1"

You might also like