// *NOTE* any line that starts with // is ignored by quake. //*** Administrator Info *** sets Admin "John Doe" sets Email "nospam@moo.com" //*** Server Name and Daily Message *** set sv_hostname "My cool Server" set g_motd "I am pregnant" //*** Game Settings *** set sv_maxclients "18" set sv_privateClients "2" set g_gametype "3" set pointlimit "200" // 0 = none // sets pointlimit for Spray you Color set timelimit "20" // 0 = none set g_friendlyFire "0" // 0 = off, 1 = on set g_warmup "40" set g_LPS_startlives 3 set g_LPS_flags 1 //*** Bots *** set bot_enable "1" set bot_minplayers "4" //*** Passwords *** set rconpassword "moocow" // Remote administration password. set sv_privatePassword "moocow" // Password for private slots on server. Client enters password by typing "set password -----" at the console. set g_password "" // Used to password protect the server. Client enters password by typing "set password -----" at the console. //*** Server Settings *** set sv_pure "1" // A Pure server will only let users connect if they have the exact same .pk3 files in their directory as the server does. Helps stop cheaters from using modified code. set g_allowvote "1" // 0 = off, 1 = on set g_doWarmup "1" set g_warmupReady "0" set g_warmup "45" set sv_allowdownload "1" // 0 = off, 1 = on set sv_dlURL "http://some.url.com" // Specify an url where users can download extra maps from. The pk3 files must be in the wop/ subdir then. set gamename "wop" set sv_maxRate "25000" // Sets the maximum allowable rate a client may have set when connected to the server. A suggested setting is 8000 or 10000 so server bandwidth is not used up by high speed clients, thus allowing modem players to have a smoother game. // set g_log "server.log" // This is to set the name of the output file. By default it's "games.log". // set g_inactivity 3000 // Number of seconds before an inactive player is kicked. //*** Master Servers *** seta sv_master1 "wopmaster.kickchat.com" // seta sv_master2 "someother.master.com" //*** Map Rotation *** // rotation for WoP gametypes set m1 "map wop_backyard; set nextnmap vstr m2" set m2 "map wop_diner; set nextnmap vstr m3" set m3 "map wop_cabin; set nextnmap vstr m4" set m4 "map wop_kaistrashmap; set nextnmap vstr m5" set m5 "map wop_padgarden; set nextnmap vstr m6" set m6 "map wop_padkitchen; set nextnmap vstr m7" set m7 "map wop_padlibrary; set nextnmap vstr m8" set m8 "map wop_padship; set nextnmap vstr m9" set m9 "map wop_padattic; set nextnmap vstr m10" set m10 "map wop_huette; set nextnmap vstr m11" set m11 "map wop_bath; set nextnmap vstr m12" set m12 "map wop_mopans_jail; set nextnmap vstr m1" // rotation for Big Balloon gametype set mb1 "map wop_dinerBB; set nextbmap vstr mb2" set mb2 "map wop_padkitchenBB; set nextbmap vstr mb3" set mb3 "map wop_padlibraryBB; set nextbmap vstr mb4" set mb4 "map wop_padshipBB; set nextbmap vstr mb5" set mb5 "map wop_padatticBB; set nextbmap vstr mb6" set mb6 "map wop_backyardBB; set nextbmap vstr mb7" set mb7 "map wop_huetteBB; set nextbmap vstr mb8" set mb8 "map wop_kaistrashmapBB; set nextbmap vstr mb9" set mb9 "map wop_padgardenBB; set nextbmap vstr mb10" set mb10 "map wop_cabinBB; set nextbmap vstr mb11" set mb11 "map wop_bathBB; set nextbmap vstr mb1" //*** Gametype Rotation *** set g1 "set nextnbmap vstr nextnmap; pointlimit 40; g_gametype 0; set nextgtype vstr g2" set g2 "set nextnbmap vstr nextnmap; pointlimit 400; g_gametype 7; set nextgtype vstr g3" set g3 "set nextnbmap vstr nextnmap; pointlimit 3; g_gametype 4; set nextgtype vstr g4" set g4 "set nextnbmap vstr nextnmap; pointlimit 120; g_gametype 5; set nextgtype vstr g5" set g5 "set nextnbmap vstr nextnmap; pointlimit 200; g_gametype 3; set nextgtype vstr g6" set g6 "set nextnbmap vstr nextbmap; pointlimit 400; g_gametype 8; set nextgtype vstr g1" //*** modifying nextmap *** set nextmap "vstr execnextmap" set execnextmap "vstr nextgtype; vstr nextnbmap; set nextmap vstr execnextmap" //*** give the first map / gametype to start from. set nextnmap "vstr m7" set nextbmap "vstr mb8" set nextnbmap "vstr nextnmap" vstr g4 vstr nextmap