1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
// Sample server configuration for Quake III Arena in Debian
//
// The Quake III Arena data includes some more elaborate examples:
//
// apt-get install unzip
// unzip /usr/lib/quake3/base/baseq3/pak0.pk3 \
// ctf.config ffa.config teamplay.config tourney.config gamecycle.config
//
// and if you have Quake III: Team Arena (see README.Debian),
//
// unzip /usr/lib/quake3/ta/missionpack/pak0.pk3 \
// small_maps.cfg large_maps.cfg terrain_maps.cfg
// set dedicated to 2 (default is 1) to advertise your server in the global
// server list
//set dedicated 2
// name of your server
//sv_hostname "An anonymous Debian server"
// You can use the exec command to run one of the example configurations
// mentioned above or your own configuration file placed in
// /var/games/quake3-server/INSTANCE.q3a/baseq3, or comment out this line and
// add your own configuration below
exec ffa.config
// Type of game to run
// 0 = free-for-all deathmatch
// 1 = tournament 1-on-1
// 3 = team deathmatch
// 4 = CTF
// 5 = one-flag CTF (Team Arena only)
// 6 = Obelisk (Team Arena only)
// 7 = Harvester (Team Arena only)
//g_gametype 0
// Start this map first
//map q3dm2
|