Add separated file for config
This commit is contained in:
parent
f986c4c758
commit
318fb36c93
2 changed files with 32 additions and 3 deletions
|
@ -1,6 +1,9 @@
|
|||
// Update this script, run this in cmd:
|
||||
// PowerShell -Command "Invoke-WebRequest -Uri https://git.mylloon.fr/Anri/confOS/raw/branch/main/games/csgo/autoexec.cfg -OutFile '%ProgramFiles(x86)%\Steam\steamapps\common\Counter-Strike Global Offensive\csgo\cfg\autoexec.cfg'"
|
||||
|
||||
// Load custom config
|
||||
exec config
|
||||
|
||||
// Harry Potter
|
||||
unbind "KP_MINUS"
|
||||
bind "KP_MINUS" "disconnect"
|
||||
|
@ -28,9 +31,6 @@ bind "TAB" "+scorenet"
|
|||
unbind "p"
|
||||
bind "p" "sv_cheats 1; noclip"
|
||||
|
||||
// Reload and clear residuals
|
||||
bind "r" "+reload; r_cleardecals"
|
||||
|
||||
// Load custom game script
|
||||
alias "cg" "exec customgame"
|
||||
|
||||
|
|
29
games/csgo/config.cfg
Normal file
29
games/csgo/config.cfg
Normal file
|
@ -0,0 +1,29 @@
|
|||
// Update this script, run this in cmd:
|
||||
// PowerShell -Command "Invoke-WebRequest -Uri https://git.mylloon.fr/Anri/confOS/raw/branch/main/games/csgo/config.cfg -OutFile '%ProgramFiles(x86)%\Steam\steamapps\common\Counter-Strike Global Offensive\csgo\cfg\config.cfg'"
|
||||
|
||||
// Deplacements
|
||||
unbind "z"
|
||||
unbind "q"
|
||||
unbind "w"
|
||||
unbind "a"
|
||||
unbind "s"
|
||||
unbind "d"
|
||||
bind "z" "+forward"
|
||||
bind "q" "+moveleft"
|
||||
bind "s" "+back"
|
||||
bind "d" "+moveright"
|
||||
|
||||
// Crouch
|
||||
unbind "CTRL"
|
||||
unbind "c"
|
||||
bind "c" "+duck"
|
||||
|
||||
// Inspect + Drop
|
||||
unbind "f"
|
||||
unbind "g"
|
||||
bind "f" "drop"
|
||||
bind "g" "+lookatweapon"
|
||||
|
||||
// Reload and clear residuals
|
||||
unbind "r"
|
||||
bind "r" "+reload; r_cleardecals"
|
Loading…
Reference in a new issue