Add hand swapper, jumpthrow, FPS and better debug message
This commit is contained in:
parent
773b981894
commit
a6fcba2c4a
1 changed files with 27 additions and 4 deletions
|
@ -1,7 +1,30 @@
|
||||||
|
// 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'"
|
||||||
|
|
||||||
// Harry Potter
|
// Harry Potter
|
||||||
|
unbind "KP_MINUS"
|
||||||
bind "KP_MINUS" "disconnect"
|
bind "KP_MINUS" "disconnect"
|
||||||
|
|
||||||
// Debug
|
// Change hand
|
||||||
echo
|
unbind "A"
|
||||||
echo Configuration chargée !
|
bind "A" "toggle cl_righthand"
|
||||||
echo
|
|
||||||
|
// jumpthrow
|
||||||
|
alias +jumpthrow "+jump;-attack"
|
||||||
|
alias -jumpthrow "-jump"
|
||||||
|
unbind "X"
|
||||||
|
bind "X" +jumpthrow
|
||||||
|
|
||||||
|
// FPS in tab
|
||||||
|
net_graph "1"
|
||||||
|
net_graphpos "2"
|
||||||
|
net_graphheight "1"
|
||||||
|
alias "+scorenet" "+showscores; net_graph 1"
|
||||||
|
alias "-scorenet" "-showscores; net_graph 0"
|
||||||
|
unbind "TAB"
|
||||||
|
bind "TAB" "+scorenet"
|
||||||
|
|
||||||
|
// Debug message
|
||||||
|
echo "========================================================================================================================================================================"
|
||||||
|
echo "======================================================================== LOADED CONFIGURATION ! ========================================================================"
|
||||||
|
echo "========================================================================================================================================================================"
|
||||||
|
|
Loading…
Reference in a new issue