]> git.xonotic.org Git - xonotic/xonotic.wiki.git/blobdiff - Basic-server-configuration.md
Upload attachment health_big.png
[xonotic/xonotic.wiki.git] / Basic-server-configuration.md
index cdef691bb49dcf8711b87b7fe4610079c5874340..67d443159dbf655c269bbb6107ad4b4d772847da 100644 (file)
@@ -73,11 +73,15 @@ If set to 0, the players will be able to see the number of votes for each map (o
 # Bots
 ```
 minplayers 0
+minplayers_per_team 0
 ```
-If set to more than 0, the server will try to make sure that the number of all active players matches the value set. For example, if `minplayers` is 4 and there is 1 person playing, the server will have 3 bots. Bots will leave or join when the number of players changes. When nobody is connected to the server, no bots will be playing.
-
+If `minplayers` is set to a more than 0, the server will fill server with bots to reach this number of players (only in teamless games). For example, if `minplayers` is 4 and there is 1 person playing, the server will have 3 bots. Similarly, in team games `minplayers_per_team X` will make sure the minimum number of players per team is X. Bots will leave or join when the number of players changes. When nobody is connected to the server, no bots will be playing.
+```
+bot_number 0
 ```
-skill 5
+If set to more than 0, the server will always spawn this number of bots. Note that server can still spawn more bots to reach the minimum number of players.
+```
+skill 8
 ```
 Sets the skill level of bots. Higher values mean harder bots. Possible values are 0 through 10.
 
@@ -90,4 +94,7 @@ If set to 1, the map will start in the warmup mode which is designed to let ever
 ```
 g_warmup_limit 0
 ```
-If set to more than 0, specifies the maximum time of the warmup state. Can be used to force the game to begin without player consensus or when players forgot about warmup being active.
\ No newline at end of file
+If set to more than 0, specifies the maximum time of the warmup state. Can be used to force the game to begin without player consensus or when players forgot about warmup being active.
+
+# More advanced configuration
+You can find other useful variables using the [Command And Cvar search tool on xonotic.org](https://xonotic.org/tools/cacs).
\ No newline at end of file