Thread: UMC3
View Single Post
Doulos
AlliedModders Donor
Join Date: Aug 2007
Old 02-23-2019 , 21:44   Re: UMC3
Reply With Quote #2

UMC3 mapcycle is used by UMC3 to determine what to do with your maps - such as voting. Add all the maps you want to have available for voting in something like the following:

Code:
"umc_mapcycle"
{
    "All Maps"
    {
        "maps_invote"    "2"

       "name your of map1"
		{
		"min_players"  "0"
		"max_players"  "20"
		}
       "name of your map2"
		{
		"min_players"  "0"
		"max_players"  "20"
		}        
    	"name of your map3"
		{
		"min_players"  "0"
		"max_players"  "20"
		}
    }
}
However, you can read the instructions HERE

Last edited by Doulos; 02-23-2019 at 21:47.
Doulos is offline