]> git.xonotic.org Git - xonotic/xonotic.git/blob - server/server.cfg
Merge branch 'asciiwolf/xonotic-makefile-fix'
[xonotic/xonotic.git] / server / server.cfg
1 // This is an example config, to actually use it, copy it to ~/.xonotic/data on linux
2 // or the equivalent directory on your OS (https://xonotic.org/faq/#config).
3
4 // Two slashes start a comment until the end of the line.
5 // Surround settings with double quotes (e.g. cvar_name "some value") unless they're a single number or word.
6 // Cvar means console variable.
7 // Just "" means empty string.
8 // Semicolon separates commands (in console or in aliases).
9
10 // Search for settings and descriptions using the 'search' command in console
11 // or online: https://xonotic.org/tools/cacs/
12
13
14
15
16 /////////////////////////////////////////////////////////////////////
17 // Things you SHOULD change to make the server "yours" (remove the // and change the value):
18
19 //sv_public 1   // 0 or -1 (see description) if the server should not be on the public servers list
20 //hostname "Xonotic $g_xonoticversion Server"   // this name will appear on the server list (the $g_xonoticversion gets replaced with the current version)
21 //sv_motd ""    // displayed on connect - good place for contact info (IRC, forum nick, etc.) so players can reach you when something is wrong with your server
22
23 // This sets the remote console password on the server, you also need to set the cvar to the same value on your client to use the 'rcon' command.
24 // Empty means rcon is disabled.
25 //rcon_password ""
26
27
28 /////////////////////////////////////////////////////////////////////
29 // Everything below has some sensible defaults so you don't really need to change anything.
30 // It's meant as examples for people who want to customize the server more.
31 // The values shown are either defaults or examples (for up to date defaults, see 'search' (or 'apropos') in console.
32
33 //maxplayers 8  // number of player slots on the server (including spectators)
34
35 //net_address 0.0.0.0   // ONLY change this if you have problems with your server. Specifies the network interface used by the engine.  Set it to one of your internal IPs
36
37 //port 26000    // the port used by the server
38 // You are RECOMMENDED to change this value to a free port number on your server
39 // above 1024. The reason is that some bad ISPs might filter "gaming" ports, and
40 // changing the port your server runs on may make your server available to these
41 // people. Changing the port breaks nothing, the default simply matches Quake as
42 // we use a Quake-derived protocol and didn't do our own IANA port assignment yet
43 // (if anyone wants to go through that process, we'd be glad).
44
45 //log_file "server.log" // server console output will also be copied to this file. This: "${serverconfig}.log" uses variable substitution to make the logfile have the same name as your config file with .log appended which is useful if you run several servers
46 //g_start_delay 15      // delay before the game starts to let players join the server first
47
48 // List of maps to play on the server.  Set to "" to autodetect (which would enumerate ALL maps.  Maps that don't support the current game mode will be skipped, so you don't need to remove them here.
49 //g_maplist "afterslime atelier boil catharsis courtfun dance drain erbium finalrage fuse geoplanetary glowplant implosion leave_em_behind nexballarena oilrig runningman runningmanctf silentsiege solarium space-elevator stormkeep techassault vorix warfare xoylent"
50 //g_maplist_shuffle 1   // 0 always selects the next map out of g_maplist (but then better set g_maplist_votable 0 below to prevent repetitive votes), 1 will select random maps each time
51 //g_maplist_mostrecent_count 3  // number of maps that have to be played before a map can be repeated
52
53 // LIMITS: how long a match will last before the next map starts (-1 means use the map default, 0 = unlimited, please note that the variables fraglimit/timelimit can NOT be globally used for this but only DURING a match is being played)
54 //timelimit_override -1 // global timelimit for all maps and gametypes
55 //fraglimit_override -1 // global frag/point limit for all maps and gametypes
56 //capturelimit_override -1      // capture limit for CTF
57 //g_domination_point_limit -1   // frag/point limit for DOM
58 //g_keyhunt_point_limit -1      // frag/point limit for KH
59 //g_lms_lives_override -1       // lives for LMS
60 //g_nexball_goallimit -1        // goals for NEXBALL
61
62 //g_ctf_ignore_frags 0  // set to 1 to ignore kills except for FC kills
63
64 // TEAMS for key hunt (change this to 2, 3, 4 to set a fixed keyhunt style)
65 //g_keyhunt_teams_override -1   // teams for KH
66
67 // GAME MODE: what type of server do you want to host?
68 // possible values: dm (deathmatch), tdm (team deathmatch), ctf (capture the flag), ca (clan arena), ft (freeze tag), kh (keyhunt), as (assault), dom (domination), lms (last man standing), ka (keepaway), inv (invasion), ons (onslaught), rc (race), cts (complete the stage), nb (nexball)
69 //gametype dm   // default gamemode
70
71 // TIPS: uncomment this if you want help messages on your server - one per match 20 seconds after the map loads
72 //alias sv_hook_gamestart_all "defer 20 help_next"
73
74
75
76 /////////////////////////////////////////////////////////////////////
77 // Some settings you MIGHT want to change.  Again IF so remove the //
78 // from the line start and change them to your liking.
79
80 //skill 4       // the bots skill level
81 //minplayers 0  // add bots if less then that number of players playing
82 //g_maxplayers 0 // above this player count, only allow spectators
83 //bot_prefix [BOT]      // prepend this to all botnames
84 //bot_suffix "" // append this to all botnames
85 //g_maplist_check_waypoints 0   // set this to 1 to skip maps without waypoints if there aren't enough players to play without bots
86
87 //g_maplist_votable 6   // number of maps to vote between.  set to 0 to disable the map voting screen (please enable g_maplist_shuffle above when this is enabled, or votes will be repetitive)
88 //g_maplist_votable_suggestions 2       // number of suggestions to accept using the suggestmap command
89 //g_maplist_votable_abstain 0   // when 1, people get a "don't care" selection in the vote screen
90 //g_maplist_votable_nodetail 1  // when 1, people can't see how many voted for what (to thwart abusive "influential" first votes)
91
92 sv_vote_gametype 1      // set to 1 to enable voting for gametypes after every match
93 //sv_vote_gametype_options "dm kh dom tdm mygametype"   // the gametypes to vote for, custom gametypes are supported
94 //set sv_vote_gametype_mygametype_name "My Mode"        // Name displayed for the custom gametype "mygametype" (replace "mygametype" with the name you set in sv_vote_gametype_options)
95 //set sv_vote_gametype_mygametype_type "ft"     // the basetype that the custom gametype is derived from
96 //set sv_vote_gametype_mygametype_description "This is my custom gametype"      // the description for the custom gametype
97 // Custom icons for custom gametypes are supported and have to be located in a server pk3 as gfx/menu/default/gametype_mygametype
98
99 //sv_vote_commands "restart fraglimit chmap gotomap nextmap endmatch reducematchtime extendmatchtime allready kick cointoss movetoauto shuffleteams"    // players can vote for those commands or use them if they are masters. You canm also add 'g_grappling_hook' for hook voting, and 'sv_fbskin_green sv_fbskin_red sv_fbskin_orange sv_fbskin_off' for fbskin voting.
100 //sv_vote_master_commands "movetored movetoblue movetoyellow movetopink"        // add commands masters can use if logged in or elected. You may want to put 'kickban' here, so masters can keep out punks. It may be good to also put "sv_status_privacy 0" then...
101 //rcon_restricted_commands "restart fraglimit chmap gotomap endmatch reducematchtime extendmatchtime allready kick kickban \"sv_cmd bans\" \"sv_cmd unban\" status \"sv_cmd teamstatus\" movetoauto movetored movetoblue movetoyellow movetopink"       // commands for the (stronger) rcon restricted
102 //rcon_restricted_password ""   // put here the password for a "restricted" rcon user (see below)
103
104 //sv_vote_call 1        // 0 will disable the normal voting
105 //sv_vote_master 1      // 0 will disable voting to become master, good if you prefer to use the master password instead
106 //sv_vote_master_password ""    // when set, vlogin PWD will allow people to become master to run master commands directly using vdo
107 //sv_vote_majority_factor 0.5   // What percentage of the PLAYERS constitute a majority to win a vote? must be at least 0.5
108 //sv_vote_majority_factor_of_voted 0    // What percentage of the VOTERS who already voted constitute a majority to win a vote? must be at least 0.5
109 // note: to JUST support simple majorities, set these two factors equal
110
111 //sv_maxidle 0  // idle time in seconds after which players will get kicked
112
113 //sv_taunt 1    // 0 to disallow taunts
114 //sv_autotaunt 1        // 0 to disallow autotaunts
115
116
117
118
119 /////////////////////////////////////////////////////////////////////
120 // Settings you MIGHT want to change for PRIVACY reasons.
121
122 //sv_status_privacy 1   // 1 hides IP addresses from "status" replies shown to clients, 0 shows them. Enables players to identify wellknown punks on your server OR is a threat to anonymity.. depending on your point of view :)
123
124 // This line sends the following data to our servers:
125 // - Date and time
126 // - Your server IP address
127 // - Your server ID hash, which is a fingerprint of the public key of your
128 //   server and does not impact security of your private key (use "crypto_keys"
129 //   on the console to show it)
130 // - Your server name ("hostname")
131 // - Current game type
132 // - Current map
133 // - Balance settings you have modified from defaults (only those that make
134 //   your server "impure")
135 // - For each weapon pairing (A, B), separately for player-player, player-bot,
136 //   bot-player, bot-bot pairings:
137 //   - Number of hits of players/bots holding A against players/bots holding B
138 //   - Number of frags of players/bots holding A against players/bots holding B
139 //   - Total damage of players/bots holding A against players/bots holding B
140 //
141 // We use this data to:
142 // - Optimize the game balance for future releases
143 // - Identify problems in the bot AI and improving it
144 // - Find settings that make servers "impure" that should not, so we can
145 //   whitelist them in future releases
146 //
147 // We will or might publish:
148 // - Global weapon pairing statistics for players vs players, or bots vs bots,
149 //   or any vs any, on a selection of servers
150 // - Per-gametype and per-map weapon pairing statistics players vs players, or
151 //   bots vs bots, or any vs any, on a selection of servers
152 // - Lists of commonly changed cvars, together with counts on how often they
153 //   are modified
154 //
155 // No information about the players on the server is sent, so as a server admin
156 // you need no permission of your players for this.
157 //
158 // No information about your server will be published - all published data sets
159 // will include data from multiple servers.
160 //
161 sv_weaponstats_file "http://www.xonotic.org/weaponbalance/"
162
163
164
165
166 /////////////////////////////////////////////////////////////////////
167 // Some more advanced settings.  You probably are not interested in changing them at all.
168
169 //sv_ready_restart 0    // 1 to allow players to restart the map when all of them press the ready button
170 //sv_ready_restart_after_countdown 0    // if set to 1 the players and map items are reset after the countdown ended, otherwise they're reset already at the beginning of the countdown
171 //sv_ready_restart_repeatable 0 "allows the players to restart the game as often as needed
172 //sv_autoscreenshot 0   // 1 will force a screenshot for all clients when the map ends.  Useful for competitions or the ladder.
173
174 //g_antilag 2   // 0 to disable the antilag feature, 1 and 2 use different methods
175
176 //sv_maxrate 1000000    // limits client connections to this rate in bytes/seconds
177
178 // see Docs/mapdownload.txt for more info
179 //sv_curl_defaulturl http://www.xonotic.org/contentdownload/getmap.php?file=    //fallback download URL
180
181 //sv_defaultcharacter 0 // 1 will force a specific model for all players
182 //sv_defaultplayermodel models/player/erebus.iqm        // this model will be used
183 //sv_defaultplayerskin 0        // this skin number will be forced for all players
184 //sv_defaultplayercolors ""     // you can even force player colors here (16*shirt+pants)
185 //g_fullbrightplayers 0 // 1 to make players fullbright
186 //g_fullbrightitems 0   // 1 to make items fullbright
187
188 //g_balance_teams 1     // 0 will show players the team selection menu after joining instead of automaticly putting them on the smaller team
189 //g_balance_teams_prevent_imbalance 1   // 0 to prevent switchint to a bigger/begger team
190
191 //g_ban_sync_uri "http://46.38.241.138/~xonotic/bans/" // sync bans using this ban list provider (disabled by default, uncomment this line to enable)
192 //g_ban_sync_trusted_servers "" // accept bans that were initially set on the server IPs listed here (if not set, your bans are just sent to the sync URIs, but no bans are retrieved from there)
193
194 //g_spawnshieldtime 1   // time for which players are protected after spawn
195
196
197
198
199 /////////////////////////////////////////////////////////////////////
200 // "Obvious" mutators that are allowed on a "pure" server
201 //g_instagib 0  // set to 1 for InstaGib
202 //g_weapon_stay 0 // set to 1, 2 or 3 for different weapon-stay modes (1 = traditional, 2 = no ammo but allow throwing, 3 = ghost weapon stay)
203 //g_powerups -1 // set to 0 to turn off strength/quad and shield/invincible, and set to 1 to turn them on even in game modes that normally have them turned off
204
205
206
207
208 /////////////////////////////////////////////////////////////////////
209 // Overkill mod settings
210
211 // To enable Overkill, put 'exec ruleset-overkill.cfg' at the top of this file (above any other cvar changes), don't use 'g_overkill 1' directly.
212 // You should also consider enabling 'g_fullbrightplayers 1'.
213
214
215
216
217 /////////////////////////////////////////////////////////////////////
218 // WARNING: anything below this line makes your server "impure"!
219
220 // enable some mutators you'd like
221 //g_cloaked 0   // set to 1 for transparent hard to see players
222 //g_grappling_hook 0    // set to 1 to enable the hook (allowed on "pure" server in InstaGib)
223 //g_jetpack 0   // set to 1 to enable the jetpack (allowed on "pure" server in InstaGib)
224 //g_midair 0    // set to 1 to make only midair damage count
225 //g_vampire 0   // set to 1 to give players the damage they cause as health
226 //sv_gravity 800        // for low gravity, set this somewhere between 50 and 400
227
228 // select AT MOST one of these arena mutators (if you didn't select g_instagib)
229 //g_nix is "0" ["0"] No Items Xonotic - instead of pickup items, everyone plays with the same weapon. After some time, a countdown will start, after which everyone will switch to another weapon, and so on
230 //g_nix_with_healtharmor is "0" ["0"] when 1, health and armor still show up in NIX
231 //g_nix_with_blaster is "0" ["0"] always carry the blaster as an additional weapon in NIX
232 //g_nix_with_powerups is "0" ["0"] when 1, powerups still show up in NIX