add customgame script

This commit is contained in:
Mylloon 2023-03-15 12:40:20 +01:00
parent d0b048fc8b
commit 6616305b49
Signed by: Anri
GPG key ID: A82D63DFF8D1317F
2 changed files with 40 additions and 3 deletions

View file

@ -10,7 +10,7 @@ unbind "a"
bind "a" "toggle cl_righthand 0 1"
// jumpthrow
alias "+jumpthrow" "+jump;-attack"
alias "+jumpthrow" "+jump; -attack"
alias "-jumpthrow" "-jump"
unbind "x"
bind "x" "+jumpthrow"
@ -25,12 +25,15 @@ unbind "TAB"
bind "TAB" "+scorenet"
// Noclip
unbind "p"
bind "p" "sv_cheats 1; noclip"
// Load custom game script
alias "cg" "exec customgame"
// Reload script
unbind "SEMICOLON"
alias "rel_ae" "exec autoexec"
bind "SEMICOLON" "rel_ae"
bind "SEMICOLON" "exec autoexec"
// Debug message
echo "========================================================================================================================================================================"

34
games/csgo/customgame.cfg Normal file
View 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 "========================================================================================================================================================================"