This commit is contained in:
parent
99e5a5bef2
commit
e5a1b1748b
1 changed files with 20 additions and 1 deletions
|
@ -2,11 +2,30 @@ set sv_maxclients 16
|
||||||
set fraglimit 15
|
set fraglimit 15
|
||||||
set rconpassword ${RCON_PASSWORD}
|
set rconpassword ${RCON_PASSWORD}
|
||||||
|
|
||||||
|
|
||||||
|
// bots (inspired from https://github.com/roguephysicist/q3a-server)
|
||||||
|
seta bot_enable 1 // Allow bots on the server
|
||||||
|
seta bot_nochat 1 // Shut those fucking bots up
|
||||||
|
seta g_spskill 3 // Default skill of bots [1-5]
|
||||||
|
seta bot_minplayers 3 // This fills the server with bots to satisfy the minimum
|
||||||
|
|
||||||
|
//## Manual adding of bots. syntax:
|
||||||
|
//## addbot name [skill] [team] [delay]
|
||||||
|
//addbot doom 4 blue 10
|
||||||
|
//addbot bones 4 blue 10
|
||||||
|
//addbot slash 4 blue 10
|
||||||
|
//addbot orbb 4 red 10
|
||||||
|
//addbot major 4 red 10
|
||||||
|
//addbot hunter 4 red 10
|
||||||
|
//addbot bitterman 4 red 10
|
||||||
|
//addbot keel 4 red 10
|
||||||
|
|
||||||
|
|
||||||
|
//levels
|
||||||
set d1 "map pro-q3dm6 ; set nextmap vstr d2"
|
set d1 "map pro-q3dm6 ; set nextmap vstr d2"
|
||||||
set d2 "map q3dm17 ; set nextmap vstr d3"
|
set d2 "map q3dm17 ; set nextmap vstr d3"
|
||||||
set d3 "map q3dm9 ; set nextmap vstr d4"
|
set d3 "map q3dm9 ; set nextmap vstr d4"
|
||||||
set d4 "map q3tourney4 ; set nextmap vstr d5"
|
set d4 "map q3tourney4 ; set nextmap vstr d5"
|
||||||
set d5 "map q3dm6 ; set nextmap vstr d6"
|
|
||||||
set d6 "map q3dm13 ; set nextmap vstr d7"
|
set d6 "map q3dm13 ; set nextmap vstr d7"
|
||||||
set d7 "map q3tourney5 ; set nextmap vstr d8"
|
set d7 "map q3tourney5 ; set nextmap vstr d8"
|
||||||
set d8 "map q3tourney3 ; set nextmap vstr d1"
|
set d8 "map q3tourney3 ; set nextmap vstr d1"
|
||||||
|
|
Loading…
Reference in a new issue