add customgame script
This commit is contained in:
parent
d0b048fc8b
commit
6616305b49
2 changed files with 40 additions and 3 deletions
|
@ -10,7 +10,7 @@ unbind "a"
|
||||||
bind "a" "toggle cl_righthand 0 1"
|
bind "a" "toggle cl_righthand 0 1"
|
||||||
|
|
||||||
// jumpthrow
|
// jumpthrow
|
||||||
alias "+jumpthrow" "+jump;-attack"
|
alias "+jumpthrow" "+jump; -attack"
|
||||||
alias "-jumpthrow" "-jump"
|
alias "-jumpthrow" "-jump"
|
||||||
unbind "x"
|
unbind "x"
|
||||||
bind "x" "+jumpthrow"
|
bind "x" "+jumpthrow"
|
||||||
|
@ -25,12 +25,15 @@ unbind "TAB"
|
||||||
bind "TAB" "+scorenet"
|
bind "TAB" "+scorenet"
|
||||||
|
|
||||||
// Noclip
|
// Noclip
|
||||||
|
unbind "p"
|
||||||
bind "p" "sv_cheats 1; noclip"
|
bind "p" "sv_cheats 1; noclip"
|
||||||
|
|
||||||
|
// Load custom game script
|
||||||
|
alias "cg" "exec customgame"
|
||||||
|
|
||||||
// Reload script
|
// Reload script
|
||||||
unbind "SEMICOLON"
|
unbind "SEMICOLON"
|
||||||
alias "rel_ae" "exec autoexec"
|
bind "SEMICOLON" "exec autoexec"
|
||||||
bind "SEMICOLON" "rel_ae"
|
|
||||||
|
|
||||||
// Debug message
|
// Debug message
|
||||||
echo "========================================================================================================================================================================"
|
echo "========================================================================================================================================================================"
|
||||||
|
|
34
games/csgo/customgame.cfg
Normal file
34
games/csgo/customgame.cfg
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
// Update this script, run this in cmd:
|
||||||
|
// PowerShell -Command "Invoke-WebRequest -Uri https://git.mylloon.fr/Anri/confOS/raw/branch/main/games/csgo/customgame.cfg -OutFile '%ProgramFiles(x86)%\Steam\steamapps\common\Counter-Strike Global Offensive\csgo\cfg\customgame.cfg'"
|
||||||
|
|
||||||
|
// Allow cheats
|
||||||
|
sv_cheats "1"
|
||||||
|
|
||||||
|
// Bunnyhop
|
||||||
|
sv_autobunnyhopping "1"
|
||||||
|
sv_enablebunnyhopping "1"
|
||||||
|
|
||||||
|
// Kick bot and end the warmup
|
||||||
|
bot_kick
|
||||||
|
mp_warmup_end
|
||||||
|
|
||||||
|
// Remove team size limitation
|
||||||
|
mp_limitteams "0"
|
||||||
|
|
||||||
|
// 60 minutes per rounds
|
||||||
|
mp_roundtime "60"
|
||||||
|
|
||||||
|
// Can always buy
|
||||||
|
mp_buy_anywhere "1"
|
||||||
|
mp_buytime "9999"
|
||||||
|
|
||||||
|
// Infinite ammo
|
||||||
|
sv_infinite_ammo "2"
|
||||||
|
|
||||||
|
// Bypass nades limitation
|
||||||
|
ammo_grenade_limit_total "5"
|
||||||
|
|
||||||
|
// Debug message
|
||||||
|
echo "========================================================================================================================================================================"
|
||||||
|
echo "================================================================== LOADED CUSTOM GAME CONFIGURATION ! =================================================================="
|
||||||
|
echo "========================================================================================================================================================================"
|
Loading…
Reference in a new issue