Hello! I am trying to build a well organized Objectivecycle.cfg because I want a different option for all the maps I give you an example of a functional config:
set d1 “set g_gametype 2 ; map braundorf_b4 ; set g_useraxisrespawntime 20 ; set g_useralliedrespawntime 15 ; set nextmap vstr d2”
set d2 “set g_gametype 2 ; map caen2 ; set g_useraxisrespawntime 15 ; set g_useralliedrespawntime 20 ; set nextmap vstr d3”
set d3 “set g_gametype 2 ; map dubrovnik_final ; set g_useraxisrespawntime 20 ; set g_useralliedrespawntime 15 ; set nextmap vstr d1”
vstr 1
I try to allocate one can better this way but it just load the last map and it is impossible to access the next whit !nextmap… anyone know why?
set d1 {
set g_gametype 2
map braundorf_b4
set g_useraxisrespawntime 20
set g_useralliedrespawntime 15
set nextmap vstr d2
}
set d2 {
set g_gametype 2
map caen2
set g_useraxisrespawntime 15
set g_useralliedrespawntime 20
set nextmap vstr d3
}
set d3 {
set g_gametype 2
map dubrovnik_final
set g_useraxisrespawntime 20
set g_useralliedrespawntime 15
set nextmap vstr d1
}
vstr 1
Thanks