unterschiedliche Gametypes (verschiedene Spiel-Modi in Rotation einbauen)

YaC|RoC
Hi
ich wollte einen Server mit unterschiedlichen gametypes erstellen und habe folgende cfg gebaut. Leider gehts nicht. Die erste map in der Rotation soltle als SD laufen, aber die map startet lustigerweise als TDM.
Irgendwer ne idee was ich falsch mache?
Hier die entsprechende Passage:

Code einblendenCode angehängt. Klicke hier zum Ein-/Ausblenden

code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:

//================================================================================= 
// g_gametype Settings 
//================================================================================= 

/******************************************************************************
// First g_gametype to load
// "dm"   - free for all deathmatch
// "dom"  - domination
// "koth" - headquarters
// "sab"  - sabotage
// "sd"   - search & destroy
// "dom"  - team deathmatch
//******************************************************************************
g_gametype "sd"

// Deathmatch 
set scr_dm_scorelimit                           150 
set scr_dm_timelimit                           10 
set scr_dm_roundlimit                          1 
set scr_dm_numlives                            0 
set scr_dm_playerrespawndelay                0 
set scr_dm_waverespawndelay                   0 

// Domination 
set scr_dom_scorelimit                        200 
set scr_dom_timelimit                           0 
set scr_dom_roundlimit                        1 
set scr_dom_numlives                           0 
set scr_dom_playerrespawndelay              0 
set scr_dom_waverespawndelay                0 

// Teamdeath Match 
set scr_war_scorelimit                        1000
set scr_war_timelimit                           15 
set scr_war_roundlimit                        1 
set scr_war_numlives                           0 
set scr_war_playerrespawndelay              0 
set scr_war_waverespawndelay                0 

// Sabotoge 
set scr_sab_scorelimit                        1 
set scr_sab_timelimit                           20 
set scr_sab_roundlimit                        0 
set scr_sab_roundswitch                        1 
set scr_sab_numlives                           0 
set scr_sab_bombtimer                          30 
set scr_sab_planttime                          2.5 
set scr_sab_defusetime                        5 
set scr_sab_hotpotato                          0 
set scr_sab_playerrespawndelay              7.5 
set scr_sab_waverespawndelay                0 

// King of the Hill 
set scr_koth_scorelimit                        250 
set scr_koth_timelimit                        15 
set scr_koth_roundlimit                        1 
set scr_koth_roundswitch                      1 
set scr_koth_numlives                          0 
set scr_koth_playerrespawndelay              5 
set scr_koth_waverespawndelay                0 
set koth_autodestroytime                      60 
set koth_spawntime                             0 
set koth_kothmode                               0 
set koth_capturetime                           20 
set koth_destroytime                           10 
set koth_delayPlayer                           0 
set koth_spawnDelay                             60 

// Suchen & Zerstören
set scr_sd_scorelimit "12"
set scr_sd_timelimit "3"
set scr_sd_roundlimit "0"
set scr_sd_numlives "0"
set scr_sd_playerrespawndelay "0"
set scr_sd_waverespawndelay "0"
set scr_sd_roundswitch "3"
set scr_sd_bombtimer "45"
set scr_sd_planttime "5"
set scr_sd_defusetime "5"
set scr_sd_multibomb "0"

set sv_mapRotation "g_gametype sd map mp_backlot g_gametype sd map mp_citystreets g_gametype war map mp_convoy g_gametype sd map mp_crash g_gametype sd map mp_crossfire g_gametype sd map mp_overgrown g_gametype sd map mp_pipeline g_gametype war map mp_showdown g_gametype sd map mp_strike g_gametype sd map mp_vacant"

set sv_mapRotationCurrent "" 

bangingbernie
Nicht g_gametype sondern nur gametype sd map mp_backlot usw.
YaC|RoC
ist es sonst nicht g_gametype...?
OLD MAN WITH GUN
Über die Console schon (oder als einfaches set g_gametype "bla" in einer config), aber nicht mehr im sv_maprotation String (wie es früher mal war)