PDA

View Full Version : Map rotaion problem..


Dlgdabalm
01-31-2006, 06:52 PM
This is my map rotation for my CoDUO server,

// Set starting game type
set g_gametype "bas" //gametype: bel, dm, re, sd, tdm, hq, dom, bas, ctf

// CoD rotation.

set sv_maprotation "gametype bas map mp_foy gametype dom map mp_italy gametype ctf map mp_kharkov"

My problem is weither I use custom map rotation or not it always skips the first map and goes to the second in line? It should start with foy but goes right to italy?

If I put just one map in it, it seems to work ok? I know being new to UO that I am doing something wrong I just dont know what?

Devenger
02-02-2006, 09:01 AM
Try moving the last map in your rotation to the first so the first on becomes the second.
This will probably work for your problem, even though it may not be the "proper" solution.

Old
// CoD rotation.

set sv_maprotation "gametype bas map mp_foy gametype dom map mp_italy gametype ctf map mp_kharkov"

New
// CoD rotation.

set sv_maprotation "gametype ctf map mp_kharkov gametype bas map mp_foy gametype dom map mp_italy"