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
|
// 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/share/games/quake3/baseq3/pak0.pk3 \
// ctf.config ffa.config teamplay.config tourney.config gamecycle.config
// 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/.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
//g_gametype 0
// Start this map first
//map q3dm2
|