AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   General (https://forums.alliedmods.net/forumdisplay.php?f=58)
-   -   UMC3 (https://forums.alliedmods.net/showthread.php?t=314525)

godzcsgo 02-23-2019 09:34

UMC3
 
I just installed this plugin its working... but what i don't understand is umc_mapcycle at all...

Since i've just mapcycle.txt before this is very confusing

Im trying to add my bhop maps but i have no idea on how to start, if anyone can help me...

Maps:
bhop_interest_fix
bhop_hellokitty_csgo
bhop_blue_aux_csgo
bhop_3_easy_csgo

I just need some1 to show me how, and also its a bhop server ofc, and the timelimit for some reason isn't 30 even though i set it in server.cfg and autoexec.cfg, and also im using cksurf by fluffyst.

All help is appriciated.

Doulos 02-23-2019 21:44

Re: UMC3
 
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

Neuro Toxin 02-24-2019 15:17

Re: UMC3
 
Quote:

Originally Posted by godzcsgo (Post 2640675)
... the timelimit for some reason isn't 30 even though i set it in server.cfg and autoexec.cfg.

You havnt mentioned which game, however: if you're running CSGO you must edit the gamemode configs as they execute last in the chain and will override server/autoexec configurations.

https://developer.valvesoftware.com/...des_server.txt

zwetch 02-26-2019 04:34

Re: UMC3
 
Example...

Code:

"umc_mapcycle"
{
    "Tier 2"
    {
        "maps_invote" "3"
        "command" "mp_timelimit 25;mp_roundtime 25;mp_restartgame 1"
        "bhop_interest_fix"        { "display"    "bhop_interest_fix (T2 L)" }
        "bhop_hellokitty_csgo"    { "display"    "bhop_hellokitty_csgo (T2 S5)" }
    }
    "Random Map List"
    {
        "maps_invote" "10"
        "command" "mp_timelimit 40;mp_roundtime 40;mp_restartgame 1"
        "bhop_yesplz"        { "display"    "bhop_yesplz (haha)" }
        "bhop_radiation"    { "display"    "bhop_radiation (Only legit skill)" }
    }
}


-----------------------------------------------------------------------


"umc_mapcycle"
{
    "Tier 2"  ........ > (Category - can be set to anything)
    {
        "maps_invote" "3"  ........ >  (Number of Maps listed on Map END VOTE "3")
        "command" "mp_timelimit 25;mp_roundtime 25;mp_restartgame 1"  ........ >  (Map timelimit)
        "bhop_interest_fix"        { "display"    "bhop_interest_fix (T2 L)" }  ........ > (Map name listed in nominate and map end vote) (Can set Tier Info + staged or Linear) (E.g "T" = Tier and "L" = linear) or any other info.
        "bhop_hellokitty_csgo"    { "display"    "bhop_hellokitty_csgo (T2 S5)" }
    }
}

You shouldn't need to edit "gamemode configs", but if the map time is not correct, better to change in the gamemode configs.
You don't need gamemodes_server.cfg at all just delete it and use server.cfg + gamemodes_casual.cfg.. Very easy to setup.



--------------------------------------------------------------



It's prob better to just to use fluffys map chooser - it's better since it uses your db mapcycle (Tier info) for nominate / rtv / mapchooser.
Also you dont need to setup anything other than changing what tier maps will show on which server.. 1.3 = Tier 1 - 3 maps... etc

https://github.com/fluffyst/ckSurf-mapchooser - I also use Fluffys mapchooser :) .


All times are GMT -4. The time now is 23:16.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.