Skip to content

2025-11-12 2:15:20 PM

Status:

Tags:

Note

These instructions were written with Windows in mind but also work with Linux. You would just need to adjust the file paths in this guide to match the Linux file paths.

4 - Editing the server's map rotation

Open this file: C:\Games\taserver-master\data\gamesettings\ootb\serverconfig.lua

Find this section at the bottom:

-- ServerSettings.MapRotation.VotingEnabled = true
-- ServerSettings.EndMatchWaitTime = 15
-- ServerSettings.MapRotation.add(Maps.CTF.ArxNovena)
-- ServerSettings.MapRotation.add(Maps.CTF.BellaOmega)
-- ServerSettings.MapRotation.add(Maps.CTF.Blueshift)
-- ServerSettings.MapRotation.add(Maps.CTF.CanyonCrusade)
-- ServerSettings.MapRotation.add(Maps.CTF.Crossfire)
-- ServerSettings.MapRotation.add(Maps.CTF.DangerousCrossing)
-- ServerSettings.MapRotation.add(Maps.CTF.Drydock)
-- ServerSettings.MapRotation.add(Maps.CTF.Hellfire)
-- ServerSettings.MapRotation.add(Maps.CTF.IceCoaster)
-- ServerSettings.MapRotation.add(Maps.CTF.Katabatic)
-- ServerSettings.MapRotation.add(Maps.CTF.Perdition)
-- ServerSettings.MapRotation.add(Maps.CTF.Permafrost)
-- ServerSettings.MapRotation.add(Maps.CTF.Raindance)
-- ServerSettings.MapRotation.add(Maps.CTF.Stonehenge)
-- ServerSettings.MapRotation.add(Maps.CTF.Sunstar)
-- ServerSettings.MapRotation.add(Maps.CTF.Tartarus)
-- ServerSettings.MapRotation.add(Maps.CTF.TempleRuins)
-- ServerSettings.MapRotation.add(Maps.CTF.Terminus)

And change it to what you want. Remove -- from any maps you want in the rotation:

-- ServerSettings.MapRotation.VotingEnabled = true
 ServerSettings.EndMatchWaitTime = 15
 ServerSettings.MapRotation.add(Maps.CTF.ArxNovena)
 ServerSettings.MapRotation.add(Maps.CTF.BellaOmega)
-- ServerSettings.MapRotation.add(Maps.CTF.Blueshift)
 ServerSettings.MapRotation.add(Maps.CTF.CanyonCrusade)
 ServerSettings.MapRotation.add(Maps.CTF.Crossfire)
 ServerSettings.MapRotation.add(Maps.CTF.DangerousCrossing)
 ServerSettings.MapRotation.add(Maps.CTF.Drydock)
-- ServerSettings.MapRotation.add(Maps.CTF.Hellfire)
 ServerSettings.MapRotation.add(Maps.CTF.IceCoaster)
 ServerSettings.MapRotation.add(Maps.CTF.Katabatic)
 ServerSettings.MapRotation.add(Maps.CTF.Perdition)
 ServerSettings.MapRotation.add(Maps.CTF.Permafrost)
 ServerSettings.MapRotation.add(Maps.CTF.Raindance)
 ServerSettings.MapRotation.add(Maps.CTF.Stonehenge)
 ServerSettings.MapRotation.add(Maps.CTF.Sunstar)
 ServerSettings.MapRotation.add(Maps.CTF.Tartarus)
 ServerSettings.MapRotation.add(Maps.CTF.TempleRuins)
 ServerSettings.MapRotation.add(Maps.CTF.Terminus)

Save it and restart your server and the rotation should reflect in-game. I think you can move the item order around to affect the rotation order. It's just in alphabetical order by default for whatever reason.

References