PDA

View Full Version : Default Game Type


solietjake
09-12-2004, 03:02 AM
how do i make my servers default gametype SD?

OldDog
09-12-2004, 06:59 AM
In your map rotation use "gametype sd" for all maps (note that chateau and ship should be excluded), then turn off voting if you want to keep it that way. Should look like this:


seta scr_allow_vote "0"
set g_allowvote "0"


and


seta sv_mapRotation "gametype sd map mp_stalingrad gametype sd map mp_brecourt gametype sd map mp_carentan gametype sd map mp_dawnville gametype sd map mp_depot gametype sd map mp_harbor gametype sd map mp_hurtgen gametype sd map mp_pavlov gametype sd map mp_powcamp gametype sd map mp_railyard gametype sd map mp_rocket gametype sd map mp_neuville gametype sd map mp_bocage"


There may be a shorter way...but this is how I've done it.

Anex
09-13-2004, 05:25 PM
Shorter way:

Add this to your config:

set g_gametype "sd"


Then, simply define your map rotation:

set sv_maprotation "map whatever map whatever map whatever"

You only need to specify gametype in the map rotation when you want to play the map(s) using different game types. If all you want to do is play SD, then the above is the simpliest way to do it.

NOTE: If you decide to change the game type mid way, just change g_gametype to whatever you want and then the maps loaded from then on will all be played using that game type.