[shine] 1 or 2 questions

UncleCrunchUncleCrunch Mayonnaise land Join Date: 2005-02-16 Member: 41365Members, Reinforced - Onos
Timers
When a vote (at the end of the last round) starts the countdown is like 300 sec... Everybody voted and we wait for a moment (1 or 2 minutes). I can't find the variable to change this.

What variable name/file is it ?

Changemap after vote:
It seems there's a issue there. I witnessed it several times. After some successful vote, it just doesn't change map. I do it manually (elected map) when I'm here but that's not really. NB mys server runs many custom maps.
What should i check in the config files ?

Comments

  • GhoulofGSG9GhoulofGSG9 Join Date: 2013-03-31 Member: 184566Members, Super Administrators, Forum Admins, Forum Moderators, NS2 Developer, NS2 Playtester, Squad Five Blue, Squad Five Silver, Reinforced - Supporter, WC 2013 - Supporter, Pistachionauts
    edited September 2014
    Time of Votes can be set up in the given plugin's configs. In your case that would be MapVote.json

    More Details: https://github.com/Person8880/Shine/wiki/Map-Vote

    About the changemap issue. Beside that shine has a delay so you can veto a mapvote winner there is only one cause that could delay or cancle the mapchnage and thats if ns2 is unable to find the mapfile neither in the workshop nor in the ns2 folders.

    If this happens alot to you that might be a another vanilla issue (not shine) with custom maps i should look into.
  • UncleCrunchUncleCrunch Mayonnaise land Join Date: 2005-02-16 Member: 41365Members, Reinforced - Onos
    Already looked into it, can't find the variable.
    Here's the file:
    {
        "EmptyPlayerCount": 0,
        "MaxExtends": 1,
        "DontExtend": [  ],
        "VoteDelay": 10,
        "MinPlayers": 4,
        "VoteLength": 2,
        "ChangeDelay": 10,
        "RoundLimit": 0,
        "PercentToFinish": 0.8,
        "IgnoreAutoCycle": [  ],
        "ExtendTime": 15,
        "ExcludeLastMaps": 0,
        "Maps": {
        "ns2_summit": true,
        "ns2_refinery": true,
        "ns2_tram": true,
        "ns2_mineshaft": true,
        "ns2_descent": true,
    	"ns2_outerrimark": true,
    	"ns2_veil_five": true,
    	"ns2_fusion": true,
    	"ns2_prison": true,
    	"ns2_caged": true,
    	"ns2_nothing": true,
    	"ns2_Stratos": true,
    	"ns2_orbital_beta": true,
    	"ns2_docking2": true,
    	"ns2_temple": true,
    	"ns2_fracture": true,
    	"ns2_mineral": true
         },
        "ChooseRandomOnTie": true,
        "MaxRevotes": 1,
        "CycleOnEmpty": false,
        "PercentToStart": 0.6,
        "NextMapVote": 1,
        "ForceChange": 60,
        "GetMapsFromMapCycle": true,
        "ShowVoteChoices": true,
        "TieFails": false,
        "EnableNextMapVote": true,
        "AlwaysExtend": true,
        "EnableRTV": true,
        "ForcedMaps": [  ],
        "MaxOptions": 8,
        "AllowExtend": true
      }
    
    MapCycle.json
    { 
    "time": 15, 
    "mode": "order", 
    "maps": [ "ns2_descent", { "mods" : [ "F9F6AED" ] , "map" : "ns2_outerrimark" } , { "mods" : [ "63C559C" ] , "map" : "ns2_caged" } , { "mods" : [ "DDAB434" ] , "map" : "ns2_docking2" } , "ns2_mineshaft", { "mods" : [ "8F1B64D" ] , "map" : "ns2_fracture" } , { "mods" : [ "AAAC676" ] , "map" : "ns2_fusion" } , { "mods" : [ "D873977" ] , "map" : "ns2_mineral" } , "ns2_summit", { "mods" : [ "D2B361D" ] , "map" : "ns2_nothing" } , { "mods" : [ "EB1AA55" ] , "map" : "ns2_orbital_beta" } , { "mods" : [ "7F8F8E6" ] , "map" : "ns2_prison" } , "ns2_tram", { "mods" : [ "101B4E31" ] , "map" : "ns2_Stratos" } , { "mods" : [ "F5E1AEF" ] , "map" : "ns2_temple" } , { "mods" : [ "FDF2C56" ] , "map" : "ns2_Veil_five" }  ] , 
    "mods": [ "101AB256", "706D242", "812F004", "AA8DA06", "B7149F9" ] 
    } 
    
    
    I can't find an value that is close to 120 (seconds) or more.



    It just looks like all is stuck when the vote succeed. When i change map manually (custom included) it works properly.

    What would be the "make sure" list to check? It may be something dumb, although i didn't change anything that i didn't know about. which is 99% of variables in there.

    What i want :
    -disable official map vote
    -use only 'M' vote
    -90 second countdown before vote ends & map change.
    -Vote = passed => 2 sec delay =>go.
  • GhoulofGSG9GhoulofGSG9 Join Date: 2013-03-31 Member: 184566Members, Super Administrators, Forum Admins, Forum Moderators, NS2 Developer, NS2 Playtester, Squad Five Blue, Squad Five Silver, Reinforced - Supporter, WC 2013 - Supporter, Pistachionauts
    To disable Vanilla votes look into your ServerConfig.json and the field Voting there.

    For 90 secs votetime set "VoteLength": 2 to "VoteLength": 1.5 . 1,5 * 60 = 90 ;)

    The other values in the setting seem to be set correctly.

    Last but not least make sure you have downloaded all custom maps, otherwise your server will refuse to change to them. Just cycle once throw the complete mapcycle.
  • SupaFredSupaFred Join Date: 2013-03-03 Member: 183652Members, NS2 Playtester, Squad Five Blue, NS2 Map Tester, Reinforced - Supporter, Reinforced - Silver, Reinforced - Shadow, WC 2013 - Silver
    -disable official map vote
    -use only 'M' vote
    -90 second countdown before vote ends & map change.
    -Vote = passed => 2 sec delay =>go.

    In ServerConfig.json change votechangemap to false.
    In MapVote.json change VoteLength to 1.5 (the value is in minutes = 90 seconds) and change ChangeDelay to 2 (that one is in seconds).
  • Person8880Person8880 Join Date: 2013-01-02 Member: 177167Members, Squad Five Blue
    The map vote plugin is an unfortunate victim of feature overload. People just kept requesting more features and the configuration options kept growing.

    I have tried to improve the documentation page on the wiki for it, let me know if there's anything unclear still.
  • UncleCrunchUncleCrunch Mayonnaise land Join Date: 2005-02-16 Member: 41365Members, Reinforced - Onos
    Thx to all.

    Yep, I guessed it was a unit stuff. But you can never be sure with so many variables.

  • SupaFredSupaFred Join Date: 2013-03-03 Member: 183652Members, NS2 Playtester, Squad Five Blue, NS2 Map Tester, Reinforced - Supporter, Reinforced - Silver, Reinforced - Shadow, WC 2013 - Silver
    Person8880 wrote: »
    The map vote plugin is an unfortunate victim of feature overload. People just kept requesting more features and the configuration options kept growing.

    I have tried to improve the documentation page on the wiki for it, let me know if there's anything unclear still.

    I like the options and I think the wiki is clear.
Sign In or Register to comment.