Last active
April 10, 2017 17:17
-
-
Save adamjedlicka/20f96c5c6bd0fe20cd587bcb22783562 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
con_enable "1" // Enable Console | |
echo :: Config loading... | |
cl_autowepswitch "0" // Turn of auto-equiping weapons after pickup | |
cl_teamid_overhead_always 1 // Show gear of your teammates over ther head | |
+cl_show_team_equipment | |
r_drawtracers_firstperson "0" // Turn off first person tracers | |
mm_dedicated_search_maxping "100" // Search for servers with low ping | |
// Viewmodels and bobing | |
cl_viewmodel_shift_left_amt "0" | |
cl_viewmodel_shift_right_amt "0" | |
cl_bob_lower_amt "0" | |
cl_bobamt_lat "0" | |
cl_bobamt_vert "0" | |
cl_showloadout "1" | |
cl_bobcycle "1" | |
// Mouse options | |
m_rawinput "1" | |
m_mouseaccel1 "0" | |
m_mouseaccel2 "0" | |
// Crosshair options | |
cl_crosshair_drawoutline "1" | |
cl_crosshair_dynamic_maxdist_splitratio "0.35" | |
cl_crosshair_dynamic_splitalpha_innermod "1" | |
cl_crosshair_dynamic_splitalpha_outermod "0.5" | |
cl_crosshair_dynamic_splitdist "7" | |
cl_crosshair_outlinethickness "1" | |
cl_crosshair_sniper_show_normal_inaccuracy "0" | |
cl_crosshair_sniper_width "1" | |
cl_crosshairalpha "250" | |
cl_crosshaircolor "5" | |
cl_crosshaircolor_b "0" | |
cl_crosshaircolor_g "255" | |
cl_crosshaircolor_r "0" | |
cl_crosshairdot "1" | |
cl_crosshairgap "-4.5" | |
cl_crosshairgap_useweaponvalue "0" | |
cl_crosshairscale "1000" | |
cl_crosshairsize "0.5" | |
cl_crosshairstyle "5" | |
cl_crosshairthickness "1" | |
cl_crosshairusealpha "1" | |
cl_fixedcrosshairgap "3" | |
// Turn off gametutorial | |
gameinstructor_enable "0" | |
cl_autohelp "0" | |
cl_showhelp "0" | |
// Hide annoying messages when joining servers | |
cl_disablehtmlmotd "1" | |
cl_downloadfilter "nosounds" | |
// HUD options | |
hud_showtargetid "1" | |
cl_teammate_colors_show 1 | |
cl_hud_bomb_under_radar "1" | |
cl_hud_radar_scale "1" | |
cl_radar_scale "0.4" | |
cl_radar_always_centered "0" | |
cl_hud_playercount_showcount "0" | |
cl_hud_playercount_pos "1" | |
cl_hud_healthammo_style "1" | |
cl_hud_background_alpha "0.2" | |
cl_loadout_colorweaponnames "1" | |
cl_radar_icon_scale_min "1" | |
cl_showloadout "1" | |
hud_scaling "0.95" | |
// Turn off music | |
snd_musicvolume 0 | |
// HUD closer to the middle | |
safezonex "0.85" | |
safezoney "0.85" | |
// Sound settings | |
windows_speaker_config "1" | |
snd_mixahead "0.05" | |
snd_musicvolume "0" | |
snd_headphone_pan_exponent "2" | |
snd_headphone_pan_radial_weight "1" | |
snd_rear_headphone_position "90" | |
bind "kp_minus" "toggle voice_enable 1 0" // KeyPad - toggles team voice comm | |
echo :: Config loaded... | |
echo :: Scripts loading... | |
// Noclip bind | |
bind mouse3 noclip | |
// Show net_graph when pressing TAB | |
bind "TAB" "+ng" | |
alias "+ng" "+showscores; net_graph 1" | |
alias "-ng" "-showscores; net_graph 0" | |
// Jump throw script | |
alias "+jumpthrow" "+jump;-attack" | |
alias "-jumpthrow" "-jump" | |
bind "h" "+jumpthrow" | |
// Courch jump script | |
unbind "space" | |
alias +djump "+jump; +duck" | |
alias -djump "-jump; -duck" | |
bind space "+djump" | |
// q key switches to knife if not holding knife. If knife is selected q key switches to the last weapon. | |
bind "q" "knife" | |
alias "knife" "slot3; bind q primary" | |
alias "primary" "lastinv; bind q knife" | |
bind "1" "slot1; bind q knife" | |
bind "2" "slot2; bind q knife" | |
bind "3" "slot3; bind q primary" | |
bind "4" "slot4; bind q knife" | |
bind "5" "slot5; bind q knife" | |
// keybinds | |
bind "mouse5" "+voicerecord" | |
bind "mouse4" "use weapon_flashbang; bind q knife" | |
bind "x" "use weapon_hegrenade; bind q knife" | |
bind "c" "use weapon_smokegrenade; bind q knife" | |
echo :: Scripts loaded... | |
host_writeconfig | |
echo :: Config fully loaded... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Config for server | |
sv_cheats 1 | |
sv_infinite_ammo 1 | |
ammo_grenade_limit_total 5 | |
mp_warmup_end | |
mp_freezetime 0 | |
mp_roundtime 60 | |
mp_roundtime_defuse 60 | |
sv_grenade_trajectory 1 | |
sv_grenade_trajectory_time 10 | |
sv_showimpacts 1 | |
mp_limitteams 0 | |
mp_autoteambalance 0 | |
mp_maxmoney 60000 | |
mp_startmoney 60000 | |
mp_buytime 9999 | |
mp_buy_anywhere 1 | |
mp_restartgame 1 | |
// Bind a key so you can fly around - replace KEY with desired key. | |
bind "KEY" "noclip" | |
// Press this once to get all grenades - replace KEY with desired key. | |
bind "KEY" "give weapon_hegrenade;give weapon_flashbang;give weapon_smokegrenade;give weapon_molotov" | |
// Bot commands | |
bot_add_t | |
bot_add_ct | |
bot_kick | |
bot_stop |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment