Playing against bots (computer controlled enemies) can be good for practicing tactics and great fun for co-op style gameplay (friends vs bots). Unfortunately, Valve have not included any options screens to modify bot settings, leaving you with just the basic '5 on 5' gameplay. So, here are some of the console commands you can use to change the settings to suit your needs.
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
{ | |
"id": "0c45385d-7359-15da-b7c3-1b605de97d51", | |
"name": "ElasticSearch", | |
"description": "Elastic Search indexing searching and more...", | |
"order": [ | |
"d87d6360-248b-7cbb-df59-a5c90f8f6e50", | |
"4f44462b-7d52-44c3-baad-1ca171aab0c0", | |
"e9efbbd2-7dad-3e42-9c34-e557090e774a", | |
"5c47039e-b910-4e5f-4e34-e11866efff89", | |
"91d64fe8-acc6-b245-30fd-0149c157b285", |
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
entity Author { | |
name String | |
details String | |
} | |
entity Book { | |
title String | |
description String | |
publication String | |
} |
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
List<InstalledPackageInfo> installedPackageInfos = new ArrayList<>(); | |
for (ApplicationInfo applicationInfo : packages) { | |
InstalledPackageInfo packageItem = new InstalledPackageInfo(); | |
List<AppPermissionInfo> permissionsInfoList = new ArrayList<>(); | |
String pkg = applicationInfo.packageName; | |
packageItem.setPackageName(pkg); |
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
/* Copyright 2013 Google Inc. | |
Licensed under Apache 2.0: http://www.apache.org/licenses/LICENSE-2.0.html */ | |
package com.example.latlnginterpolation; | |
import android.animation.ObjectAnimator; | |
import android.animation.TypeEvaluator; | |
import android.animation.ValueAnimator; | |
import android.annotation.TargetApi; | |
import android.os.Build; |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
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
echo "Loading config" | |
sv_cheats 1 | |
//Enables “cheats”. | |
god | |
mp_limitteams 0 | |
//No team limit (e.g. you can have 10 people/bots on CT and 1 guy on T). | |
mp_autoteambalance 0 | |
//Turns auto team balance off. | |
mp_roundtime 60 | |
//Maximum roundtime set to 60 minutes. |
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
[alias] | |
po = !git remote prune origin | |
dm = !git branch --merged | grep -E -v \"master|develop\" | xargs git branch -d |
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
git branch --merged | grep -E -v "master|develop" | xargs git branch -d |