csgo practice config

package main

import "fmt"

func main() {
    fmt.Println("CS:GO Practice Config")

    // Set Game Settings
    fmt.Println("sv_cheats 1")
    fmt.Println("mp_roundtime 60")
    fmt.Println("mp_freezetime 0")
    fmt.Println("mp_buytime 9999")
    fmt.Println("mp_buy_anywhere 1")
    fmt.Println("mp_restartgame 1")

    // Enable Unlimited Ammo and No Recoil
    fmt.Println("sv_infinite_ammo 1")
    fmt.Println("sv_recoil 0")

    // Give Full Armor and Health
    fmt.Println("armor 1;heal")

    // Set Bot Difficulty
    fmt.Println("bot_difficulty 2")

    // Add Bots to the Game
    fmt.Println("bot_add_t")
    fmt.Println("bot_add_ct")

    // Set Bot Weapon
    fmt.Println("give weapon_ak47;give weapon_m4a1")

    // Enable God Mode
    fmt.Println("god")

    // Infinite Flashbangs
    fmt.Println("mp_free_armor 1;give weapon_flashbang;give weapon_flashbang;give weapon_flashbang;give weapon_flashbang")

    // Infinite Smoke Grenades
    fmt.Println("give weapon_smokegrenade;give weapon_smokegrenade;give weapon_smokegrenade;give weapon_smokegrenade")

    // Set Crosshair
    fmt.Println("cl_crosshairsize 2")
    fmt.Println("cl_crosshaircolor 5")

    // Disable Post-Processing Effects
    fmt.Println("mat_postprocess_enable 0")

    // Set Viewmodel Position
    fmt.Println("viewmodel_fov 68;viewmodel_offset_x 2.5;viewmodel_offset_y 0;viewmodel_offset_z -1.5")

    // Display Configuration Message
    fmt.Println("echo \"Practice Config Loaded\"")
}