View Single Post
GoRiLliAz
Senior Member
Join Date: May 2013
Old 04-28-2017 , 07:25   Re: Galileo v5.5.0-807 (a feature rich map voting plugin) | Last Update: 2017-04-04
Reply With Quote #643

Hello,

Would it be possible to add

When to display the votemap

Example: 3 minutes before the end of the time limit

Because I have plugins that turn off 1 minute before the end of the time limit, so the players choose to extend the map my plugins stays OFF

Edit:
BUG :
There was a votemap, the result is: de_nuke32 and de_dust

So there was another votemap with de_nuker32 and de_dust

The map that wins is de_nuke32

But there he re-launched a votemap with 2 choices which are the same de_nuke32 2 times

Then after he re-cast a vote with as of de_nuke32 and extended the map

Code:
////////////////////////////////////////////////////////////////////////
// Runoff voting happens when none of the normal vote options receive //
// over 50% of a given vote. The two options with the highest vote    //
// counts will be in the runoff vote.                                 //
////////////////////////////////////////////////////////////////////////

// Indicates whether to allow runoff voting or extend the current map.
//
// 0 - disable runoff voting
// 1 - enable runoff voting
// 2 - extend the current map, instead of perform a runoff voting
//
// Default: 0
gal_runoff_enabled 1

// Specifies the number of seconds the runoff vote should last.
// To disabled this feature, set the cvar `gal_runoff_enabled` to 0 or 2
//
// Default: 20
gal_runoff_duration 20

// Specifies the minimum amount of votes the most voted map should have
// to not start a run off voting. For example, setting it to 0.4 will
// cause a runoff to start if the most voted map does not get
// 0.4*100% = 40% of the votes. The basic formula to start it is:
//
//     numberOfVotesAtFirstPlace <= g_totalVotesCounted * gal_runoff_ratio
//
// If the most voted map does not receive at lest these votes percentage,
// a runoff voting is performed.
//
// To disabled this feature, set the cvar `gal_runoff_enabled` to 0
//
// Default: 0.5
gal_runoff_ratio 0.4

// Specifies the number of maps players can choose from during the runoff
// vote. The number of maps must be between 2 and 9. This count includes
// the options `Stay Here` and `Extend Map`.
// Now the voting take may into account all the map options that had the
// maximum amount of votes, i.e., the number of maps to be included in
// runoff voting. So someone could choose  to have two, three or maybe
// all maps with the highest number of votes in runoff voting.
//
// Note:
// Not all your runoff voting's will use all these maps. This will only
// happen when there are several high and equally voted maps.
// For example, if this cvar is set to 9 and there are 9 maps in voting,
// and only 7 of them get one vote, only those 7 maps will be present on
// the runoff vote.
//
// To disabled this feature, set the cvar `gal_runoff_enabled` to 0
//
// Default: 2
gal_runoff_mapchoices 2
New Edit :
Add the same for rtv:

Code:
// Let the server players nominate maps from the nomination file list
// 'gal_nom_mapfile'. But, when the cvar 'gal_vote_minplayers' is enabled,
// only allow nominations from the 'gal_vote_minplayers_mapfile'.
//
// 0 - Show all nominated maps.
//
// 1 - Only allow nominations from the 'gal_vote_minplayers_mapfile' when
//     when the cvar 'gal_vote_minplayers' is enabled.
//
//     Note: This will allow the players to nominate maps not from
//     'gal_vote_minplayers_mapfile', but they will not be show at the map
//     voting if there are less players than 'gal_vote_minplayers', at the
//     moment when the voting starts.
//
// To disable this feature, set this cvar to 0
//
// Default: 0
gal_nom_minplayers_control 1
Edit :

The sounds are for some people in other languages ​​while the default language of the server is French. Same for answers for timeleft
__________________


Last edited by GoRiLliAz; 04-29-2017 at 04:00. Reason: Add bug
GoRiLliAz is offline