Add conf and basics ;)
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
66b3625df9
commit
99e5a5bef2
3 changed files with 36 additions and 0 deletions
10
.drone.yml
Normal file
10
.drone.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
---
|
||||
kind: pipeline
|
||||
name: lint
|
||||
|
||||
steps:
|
||||
- name: markdown lint
|
||||
image: pipelinecomponents/markdownlint:latest
|
||||
commands:
|
||||
- mdl --style all --warnings .
|
||||
|
11
README.md
11
README.md
|
@ -1,2 +1,13 @@
|
|||
# q3_server_config
|
||||
|
||||
Q3 config server.
|
||||
Base on docker image from jberrenberg/quake3
|
||||
For now the main config file is :
|
||||
|
||||
## map list
|
||||
|
||||
TBD
|
||||
|
||||
## vote list
|
||||
|
||||
TBD
|
||||
|
|
15
my_server.cfg
Normal file
15
my_server.cfg
Normal file
|
@ -0,0 +1,15 @@
|
|||
set sv_maxclients 16
|
||||
set fraglimit 15
|
||||
set rconpassword ${RCON_PASSWORD}
|
||||
|
||||
set d1 "map pro-q3dm6 ; set nextmap vstr d2"
|
||||
set d2 "map q3dm17 ; set nextmap vstr d3"
|
||||
set d3 "map q3dm9 ; set nextmap vstr d4"
|
||||
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 d7 "map q3tourney5 ; set nextmap vstr d8"
|
||||
set d8 "map q3tourney3 ; set nextmap vstr d1"
|
||||
|
||||
vstr d1
|
||||
|
Loading…
Reference in a new issue