Quote:
Originally Posted by rodreeking
PHP Code:
"umc_mapcycle" { "SURF+KILL" { "maps_invote" "4"
"surf_ski_2" { } "surf_ski_2_csgo" { }
} "DEATHMATCH" { "maps_invote" "5" "de_dust2" { } "de_inferno" { } "de_mirage" { } } }
Its a simple version but i cant make it work
|
Get rid of the "maps_invote" lines. If your first group, you are telling UMC to use 4 maps, and you only have 2. You also
may run into problems with that group name having the + in it. You may want to name it SURF_KILL instead. Make it look like this:
PHP Code:
"umc_mapcycle"
{
"SURF_KILL"
{
"surf_ski_2" {}
"surf_ski_2_csgo" {}
}
"DEATHMATCH"
{
"de_dust2" {}
"de_inferno" {}
"de_mirage" {}
}
}
Edit: If that doesn't work, then you will have to wait for a code update, or update the code yourself.
__________________