{ dmflags = 12345... dmflags2 = 12345... zadmflags = 12345... ... compatflags2 = 12345... gamemode = "..." // any named dmflags can go here -- these apply globally template "asd" { dmflags = ... // all the stuff above, basically votable = true/false/yes/no fraglimit = 123 pointlimt = 123 // stuff here applies for whatever loads this template } playlist "extraordinaryctf" { gamemode = "ctf" // gamemode specification dmflags = ... // also stuff allowed here template = "asd" // loads stuff from a template // stuff here applies to this playlist map "map01", "map02", "map03" // 3 maps { template "fgh" // loads stuff from another template for these maps sv_unblockplayers = true/false/yes/no // override a setting for this map minplayers = 8, "map19" // if fewer than 8 players, go to specified map (can also be another playlist) // stuff here applies to these maps } map "map04" ... "map10" {} // map ranges map "map11" ... "map15", "map17" ... "map30" {} // multiple map ranges entry "map01-tdm" // custom entry, can't do ranges with this { map = map01 gamemode = tdm } } playlist "smallctf" { gamemode = "ctf" maxplayers = 8, "extraordinaryctf" // max players for this playlist ... map map04, map12, map17 {} } }