1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
// Example Quake II server configuration for Debian
// This is installed into /etc/quake2-server/debian_server.cfg and symlinked
// into the game directory as debian_server.cfg, so you can run it via:
//
// exec debian_server.cfg
//
// If you only have the demo (quake2-demo-data) look at
// /etc/quake2-server/demo/debian_server.cfg instead.
set hostname "An anonymous Debian server"
set location "The Internet"
set website "http://www.debian.org/"
set deathmatch 1
set maxclients 8
set timelimit 30
set fraglimit 30
map q2dm1
// to advertise your server to a public "master server" add something
// like this:
//set public 1
//setmaster master.q2servers.com
|