Last active
January 15, 2019 00:40
-
-
Save kus/03d4f046eba91dee58828bcfdd6f6417 to your computer and use it in GitHub Desktop.
CS:GO grenade/recoil practice on a remote server with rcon
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
// Setup server | |
rcon sv_cheats 1 // Enable cheats | |
rcon mp_limitteams 0 // Allow team stacking | |
rcon mp_autoteambalance 0 // Disable auto team balance | |
rcon mp_roundtime 60 // Set round time to 60 minutes | |
rcon mp_roundtime_defuse 60 // Set defuse time to 60 minutes | |
rcon mp_maxmoney 60000 // Set maximum money to be $60,000 | |
rcon mp_startmoney 60000 // Start with $60,000 money | |
rcon mp_freezetime 0 // No freezetime | |
rcon mp_buytime 9999 // Unlimited buytime | |
rcon mp_buy_anywhere 1 // Buy from anywhere on the map | |
rcon sv_infinite_ammo 1 // Gives you infinite ammo and no reload | |
rcon ammo_grenade_limit_total 5 // You can now hold all 5 grenade types | |
rcon sv_grenade_trajectory 1 // Enable trajectory when you throw grenades | |
rcon sv_grenade_trajectory_time 10 // Show trajectory for 10 seconds | |
rcon sv_showimpacts 1 // Enable bullet impacts | |
rcon sv_showimpacts_time 10 // Show bullet impacts for 10 seconds | |
rcon bot_kick // Kicks all the bots | |
rcon mp_warmup_end // End warmup | |
rcon mp_restartgame 1 // Restart the map | |
// Binds | |
rcon say "bind KEY noclip - Toggle fly mode" | |
rcon say "bind KEY give weapon_hegrenade;give weapon_flashbang;give weapon_smokegrenade;give weapon_incgrenade;give weapon_molotov;give weapon_decoy - Gives you all the grenades" | |
rcon say "bind KEY cast_ray - Casts a straight line to test collision detection" | |
// Useful commands | |
echo "bind KEY toggle rcon host_timescale 5 1 - Speed up game" | |
echo "bot_add_<t/ct> - Add a bot" | |
echo "bot_stop 1 - Stops the bots, they will stand still" | |
echo "bot_mimic 1 - Bots will mimic your movements and actions" | |
echo "god - Enable god mode" | |
echo "r_drawothermodels 2 - Wallhack" | |
echo "mat_wireframe 2 - Wallhack" | |
echo "mat_fullbright 3 - White walls" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment