Difference between revisions of "Galileo"
(→mcp_srv_onrestart ''<iAction>'') |
(→gal_vote_mapfiletype: no longer used) |
||
(16 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
+ | This wiki entry is outdated, see [https://forums.alliedmods.net/showthread.php?t=77391 the plugin's forum thread] for an updated list of cvars. | ||
+ | |||
<div class="townBox" style="background-color:pink">It is <span style="color:red">'''strongly'''</span> recommended that you disable both '''nextmap.amxx''' and '''mapchooser.amxx''' from within your '''plugins.ini''' file when using this plugin.</div> | <div class="townBox" style="background-color:pink">It is <span style="color:red">'''strongly'''</span> recommended that you disable both '''nextmap.amxx''' and '''mapchooser.amxx''' from within your '''plugins.ini''' file when using this plugin.</div> | ||
Provides a variety of next map choosing features. Intended to be used in place of all other map choosing plugins such as Deagles' Map Manager and <span title="AMX Mod X" style="border-bottom:1px dotted">AMXX</span>'s own mapchooser. It contains more customizable features than either of those. | Provides a variety of next map choosing features. Intended to be used in place of all other map choosing plugins such as Deagles' Map Manager and <span title="AMX Mod X" style="border-bottom:1px dotted">AMXX</span>'s own mapchooser. It contains more customizable features than either of those. | ||
− | All the features of | + | All the features of Galileo are described below. The biggest three are [[#Map Nominations|nominations]], [[#Rock the Vote|rock the vote]], and [[#Runoff Voting|runoff voting]]. |
<br> | <br> | ||
<br> | <br> | ||
Line 10: | Line 12: | ||
===CVARs=== | ===CVARs=== | ||
− | ==== | + | ====gal_vote_mapfile ''<cFile>''==== |
:{| | :{| | ||
|- | |- | ||
| | | | ||
|- | |- | ||
− | |Specifies the file to use which either holds the names of the maps that players can nominate or is used in the map group feature to indicate how many maps to use from each group as determined by the '' | + | |Specifies the file to use which either holds the names of the maps that players can nominate or is used in the map group feature to indicate how many maps to use from each group as determined by the ''gal_vote_mapfiletype'' CVAR. |
There is no default value. | There is no default value. | ||
− | If left blank, which it is by default, addons/amxmodx/configs/ | + | If left blank, which it is by default, addons/amxmodx/configs/galileo/votefill.ini will be used. Otherwise, you must specify a fully qualified filename starting from your game mod folder (i.e. "cstrike", "dod", "czero", etc). |
Example Values: | Example Values: | ||
:* mapcycle.txt | :* mapcycle.txt | ||
− | :* ../../common_configs/ | + | :* ../../common_configs/galileo/votefill.ini |
− | :* addons/amxmodx/configs/ | + | :* addons/amxmodx/configs/galileo/nominatable.ini |
|} | |} | ||
− | ==== | + | ====gal_vote_mapfiletype ''<1|2>''==== |
− | Specifies the type of file '' | + | |
+ | {{note|This cvar is no longer used. Detection is done through a [groups] header. See [http://v.gd/Tv9T8b forum post].}} | ||
+ | |||
+ | Specifies the type of file ''gal_vote_mapfile'' is being used as. | ||
{| | {| | ||
Line 45: | Line 50: | ||
The default is '''1'''. | The default is '''1'''. | ||
− | When the value is '''1''', the file specified by '' | + | When the value is '''1''', the file specified by ''gal_vote_mapfile'' is a listing of maps. Each map should be listed, one per line. Just like is done in '''mapcycle.txt'''. |
Here is a short example: | Here is a short example: | ||
Line 56: | Line 61: | ||
cs_havana | cs_havana | ||
− | When the value is '''2''', the file specified by '' | + | When the value is '''2''', the file specified by ''gal_vote_mapfile'' is formatted differently. Instead of listing maps, you would list the count of maps to pick from each map group, one count per line. You can have a maximum of 8 counts listed. This allows you to prioritize different groups of maps to use in filling a vote. It allows you to say, "pick up to X maps from this group first, then pick up to Y maps from this other group". You can have a maximum of 8 groups. |
Here is an example of 3 counts listed: | Here is an example of 3 counts listed: | ||
Line 70: | Line 75: | ||
The files must be named and located as such: | The files must be named and located as such: | ||
− | :./amxmodx/configs/ | + | :./amxmodx/configs/galileo/votefill/1.ini |
− | :./amxmodx/configs/ | + | :./amxmodx/configs/galileo/votefill/2.ini |
− | :./amxmodx/configs/ | + | :./amxmodx/configs/galileo/votefill/3.ini |
Each of those files, '''1.ini''', '''2.ini''', and '''3.ini''', should contain a listing of maps. | Each of those files, '''1.ini''', '''2.ini''', and '''3.ini''', should contain a listing of maps. | ||
− | + | Galileo will first load any nominated maps into the vote. It will then grab up to 3 maps from '''1.ini''', up to 3 from '''2.ini''', and up to 2 from '''3.ini'''. | |
− | ==== | + | ====gal_vote_duration ''<iSeconds>''==== |
Specifies how long a map vote should last. | Specifies how long a map vote should last. | ||
The default is '''15''' seconds. | The default is '''15''' seconds. | ||
− | ==== | + | ====gal_vote_expirationcountdown ''<0|1>''==== |
Specifies whether the vote expiration countdown should be displayed when there are 10 or fewer seconds left in a vote. It will count down from 10 to 0, at which point the vote will be over. It will only show to players that have not yet voted. | Specifies whether the vote expiration countdown should be displayed when there are 10 or fewer seconds left in a vote. It will count down from 10 to 0, at which point the vote will be over. It will only show to players that have not yet voted. | ||
Line 100: | Line 105: | ||
The default is '''1'''. | The default is '''1'''. | ||
− | ==== | + | ====gal_vote_announcechoice ''<0|1>''==== |
Specifies whether to announce each player's choice. | Specifies whether to announce each player's choice. | ||
Line 117: | Line 122: | ||
The default is '''1'''. | The default is '''1'''. | ||
− | ==== | + | ====gal_vote_showstatus ''<0|1|2>''==== |
− | Specifies when the vote progress should be shown. A value of 0 disables this feature. | + | Specifies when the vote progress should be shown to a player. A value of 0 disables this feature. |
:{| | :{| | ||
Line 137: | Line 142: | ||
The default is '''0'''. | The default is '''0'''. | ||
− | ==== | + | ====gal_vote_showstatustype ''<1|2>''==== |
Specifies how to show the progress of a vote. | Specifies how to show the progress of a vote. | ||
Line 155: | Line 160: | ||
====amx_extendmap_max ''<fMinutes>''==== | ====amx_extendmap_max ''<fMinutes>''==== | ||
− | Specifies the maximum | + | Specifies the maximum number of minutes a map can be played. |
A value less than ''mp_timelimit'' will not let the map be extended. This is the same CVAR that AMXX provides. | A value less than ''mp_timelimit'' will not let the map be extended. This is the same CVAR that AMXX provides. | ||
Line 171: | Line 176: | ||
===Console Commands=== | ===Console Commands=== | ||
− | ==== | + | ====gal_startvote==== |
Immediately starts a map vote. | Immediately starts a map vote. | ||
− | ==== | + | ====gal_createmapfile ''[cFlags|cFilename]''==== |
Creates a map file listing all the maps located in the '''maps''' folder of the server. | Creates a map file listing all the maps located in the '''maps''' folder of the server. | ||
Line 180: | Line 185: | ||
*If the command is used without any additional parameters, it will create a file named "allmaps.ini" in your game mod folder (i.e. "cstrike", "dod", "czero", etc). | *If the command is used without any additional parameters, it will create a file named "allmaps.ini" in your game mod folder (i.e. "cstrike", "dod", "czero", etc). | ||
− | *If a filename is specified, it will attempt to create that file. It must be a full qualified filename starting from your game mod folder. See the ''' | + | *If a filename is specified, it will attempt to create that file. It must be a full qualified filename starting from your game mod folder. See the '''gal_nom_mapfile''' CVAR for examples of what you can enter as a filename. |
− | *If "n", "v", or "nv" is specified, the files created will be based on the CVARs for nominatable maps and/or votefill maps, as applicable. See the ''' | + | *If "n", "v", or "nv" is specified, the files created will be based on the CVARs for nominatable maps and/or votefill maps, as applicable. See the '''gal_nom_mapfile''' CVAR to determine the name of the file that will be created when using the "n" flag. See the '''gal_votefill_mapfile''' CVAR to determine the name of the file that will be created when using the "v" flag. |
==Server Features== | ==Server Features== | ||
Line 189: | Line 194: | ||
===CVARs=== | ===CVARs=== | ||
− | ==== | + | ====gal_srv_onrestart ''<iAction>''==== |
Specifies which action to take when it is detected that the server has been restarted. | Specifies which action to take when it is detected that the server has been restarted. | ||
Line 219: | Line 224: | ||
Allows players to nominate maps for inclusion in the next map vote. | Allows players to nominate maps for inclusion in the next map vote. | ||
− | Not all nominations are guaranteed to be used. If there are more nominations than are allowed in the vote, a random selection of the nominations will be used. See the | + | Not all nominations are guaranteed to be used. If there are more nominations than are allowed in the vote, a random selection of the nominations will be used. See the gal_nom_qtyused CVAR description for more detail. |
If a player disconnects, any nominations they had made will be cancelled. | If a player disconnects, any nominations they had made will be cancelled. | ||
Line 225: | Line 230: | ||
===CVARs=== | ===CVARs=== | ||
− | ==== | + | ====gal_nom_playerallowance ''<iNominationCnt>''==== |
Specifies how many nominations each player can make. A value of 0 will disable this feature. | Specifies how many nominations each player can make. A value of 0 will disable this feature. | ||
The default is '''2''' nominations. | The default is '''2''' nominations. | ||
− | ==== | + | ====gal_nom_mapfile ''<cFile>''==== |
Specifies the file to use which holds the names of the maps that players can nominate. | Specifies the file to use which holds the names of the maps that players can nominate. | ||
There is no default value. | There is no default value. | ||
− | If left blank, which it is by default, '''addons/amxmodx/configs/ | + | If left blank, which it is by default, '''addons/amxmodx/configs/galileo/nominatable.ini''' will be used. Otherwise, you must specify a fully qualified filename starting from your game mod folder (i.e. "cstrike", "dod", "czero", etc). |
Example Values: | Example Values: | ||
*mapcycle.txt | *mapcycle.txt | ||
− | *../../common_configs/ | + | *../../common_configs/galileo/nominatable.ini |
− | ==== | + | ====gal_nom_qtyused ''<iNominationCnt>''==== |
− | Specifies how many of the nominations made will be | + | Specifies how many of the nominations made will be considered for use in the next map vote. A value of 0 means all the nominated maps will be considered. |
The default is '''0''' (all nominations). | The default is '''0''' (all nominations). | ||
− | ==== | + | ====gal_banrecent ''<iMapCount>''==== |
Specifies the number of recently played maps to disallow from being nominated. | Specifies the number of recently played maps to disallow from being nominated. | ||
Line 255: | Line 260: | ||
===Console Commands=== | ===Console Commands=== | ||
− | ==== | + | ====gal_listmaps ''[partial mapname]''==== |
− | Lists all the nominatable maps as defined in the nominatable map file. See the ''' | + | Lists all the nominatable maps as defined in the nominatable map file. See the '''gal_nom_mapfile''' CVAR description for more detail. |
If a partial map name is given, only maps that contain the partial map name will be listed. | If a partial map name is given, only maps that contain the partial map name will be listed. | ||
− | ==== | + | ====gal_createmapfile ''[cFlags|cFilename]''==== |
Creates a map file listing all the maps located in the '''maps''' folder of the server. | Creates a map file listing all the maps located in the '''maps''' folder of the server. | ||
Line 266: | Line 271: | ||
*If the command is used without any additional parameters, it will create a file named "allmaps.ini" in your game mod folder (i.e. "cstrike", "dod", "czero", etc). | *If the command is used without any additional parameters, it will create a file named "allmaps.ini" in your game mod folder (i.e. "cstrike", "dod", "czero", etc). | ||
− | *If a filename is specified, it will attempt to create that file. It must be a full qualified filename starting from your game mod folder. See the ''' | + | *If a filename is specified, it will attempt to create that file. It must be a full qualified filename starting from your game mod folder. See the '''gal_nom_mapfile''' CVAR for examples of what you can enter as a filename. |
− | *If "n", "v", or "nv" is specified, the files created will be based on the CVARs for nominatable maps and/or votefill maps, as applicable. See the ''' | + | *If "n", "v", or "nv" is specified, the files created will be based on the CVARs for nominatable maps and/or votefill maps, as applicable. See the '''gal_nom_mapfile''' CVAR to determine the name of the file that will be created when using the "n" flag. See the '''gal_votefill_mapfile''' CVAR to determine the name of the file that will be created when using the "v" flag. |
Line 289: | Line 294: | ||
===CVARs=== | ===CVARs=== | ||
− | ==== | + | ====gal_rtv_commands ''<iFlags>''==== |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
Specifies which say commands can be used to rock the vote. A value of 0 will disable this feature. | Specifies which say commands can be used to rock the vote. A value of 0 will disable this feature. | ||
Line 318: | Line 313: | ||
|} | |} | ||
− | The default is ''' | + | The default is '''3'''. |
The dynamic "rockthe''<anything>''vote" command allows a player to type any one word (i.e. no spaces) that starts with "rockthe" and ends with "vote". Some examples might be: "rockthedamnvote", "rockthesillylittlevote", or "rockthefreakingvote". The total length of the word can not be longer than 31 characters. That leaves 20 characters for creativeness once you factor in the lengths of "rockthe" and "vote". | The dynamic "rockthe''<anything>''vote" command allows a player to type any one word (i.e. no spaces) that starts with "rockthe" and ends with "vote". Some examples might be: "rockthedamnvote", "rockthesillylittlevote", or "rockthefreakingvote". The total length of the word can not be longer than 31 characters. That leaves 20 characters for creativeness once you factor in the lengths of "rockthe" and "vote". | ||
+ | ====gal_rtv_start ''<fMinutes>''==== | ||
+ | Specifies the number of minutes after a map starts that players may begin to rock the vote. | ||
+ | |||
+ | The default is '''10''' minutes. | ||
+ | |||
+ | ====gal_rtv_ratio ''<fRatio>''==== | ||
+ | Indicates the ratio of players that need to rock the vote before a vote will be forced to occur. | ||
+ | |||
+ | The default is '''0.60''' (60%). | ||
===Say Commands=== | ===Say Commands=== | ||
Line 332: | Line 336: | ||
====rockthe''<anything>''vote==== | ====rockthe''<anything>''vote==== | ||
− | Alias for "rockthevote". This is the dynamic command. See the ''' | + | Alias for "rockthevote". This is the dynamic command. See the '''gal_rtv_commands''' CVAR description for more detail. |
==Runoff Voting== | ==Runoff Voting== | ||
Line 338: | Line 342: | ||
Allows a secondary vote of the two highest vote getting maps if a single map doesn't win the first vote by more than 50% of the total votes. | Allows a secondary vote of the two highest vote getting maps if a single map doesn't win the first vote by more than 50% of the total votes. | ||
− | The runoff vote will utilize the applicable ''' | + | The runoff vote will utilize the applicable '''gal_vote_*''' CVARs, with the exception of '''gal_vote_duration''', which is overridden by '''gal_runoff_duration'''. |
Runoff voting can only occur if there are more than two maps with votes in the first vote. | Runoff voting can only occur if there are more than two maps with votes in the first vote. | ||
Line 344: | Line 348: | ||
===CVARs=== | ===CVARs=== | ||
− | ==== | + | ====gal_runoff_enabled ''<0|1>''==== |
Specifies whether to allow runoff voting or not. | Specifies whether to allow runoff voting or not. | ||
Line 361: | Line 365: | ||
The default is '''0'''. | The default is '''0'''. | ||
− | ==== | + | ====gal_runoff_duration ''<iSeconds>''==== |
Specifies the number of seconds the runoff vote should last. | Specifies the number of seconds the runoff vote should last. | ||
Line 372: | Line 376: | ||
===CVARs=== | ===CVARs=== | ||
− | ==== | + | ====gal_banrecent ''<iMapCount>''==== |
Specifies how many of the most recent maps are disallowed from a map vote. A value of 0 will disable this feature. | Specifies how many of the most recent maps are disallowed from a map vote. A value of 0 will disable this feature. | ||
The default is '''3'''. | The default is '''3'''. | ||
− | ==== | + | ====gal_banrecentstyle ''<iStyle>''==== |
Indicates the style in which the recent maps are displayed. | Indicates the style in which the recent maps are displayed. | ||
Line 400: | Line 404: | ||
===CVARs=== | ===CVARs=== | ||
− | ==== | + | ====gal_vote_weight ''<iVoteWeight>''==== |
Specifies how many votes a single admin vote should count as. A value of 0 or 1 will disable this feature. | Specifies how many votes a single admin vote should count as. A value of 0 or 1 will disable this feature. | ||
The default is '''2'''. | The default is '''2'''. | ||
− | ==== | + | ====gal_vote_weight_flags ''<cAdminFlags>''==== |
Specifies the [[Adding Admins (AMX Mod X)#Access Levels|standard access flags]] needed to have weighted votes. You can specify multiple flags. | Specifies the [[Adding Admins (AMX Mod X)#Access Levels|standard access flags]] needed to have weighted votes. You can specify multiple flags. | ||
Line 416: | Line 420: | ||
===CVARs=== | ===CVARs=== | ||
− | ==== | + | ====gal_disable_votemap ''<0|1>''==== |
Indicates if players can use the standard HL1 '''votemap''' and '''listmaps''' commands. | Indicates if players can use the standard HL1 '''votemap''' and '''listmaps''' commands. | ||
Line 439: | Line 443: | ||
===CVARS=== | ===CVARS=== | ||
− | ==== | + | ====gal_endonround ''<0|1>''==== |
− | Indicates | + | Indicates when a map should end when time runs out. |
:{| | :{| | ||
Line 455: | Line 459: | ||
The default is '''1'''. | The default is '''1'''. | ||
+ | |||
+ | [[Category:3rd Party Plugins (AMX Mod X)]] |
Latest revision as of 13:05, 24 February 2015
This wiki entry is outdated, see the plugin's forum thread for an updated list of cvars.
Provides a variety of next map choosing features. Intended to be used in place of all other map choosing plugins such as Deagles' Map Manager and AMXX's own mapchooser. It contains more customizable features than either of those.
All the features of Galileo are described below. The biggest three are nominations, rock the vote, and runoff voting.
Contents
- 1 General Voting
- 1.1 CVARs
- 1.1.1 gal_vote_mapfile <cFile>
- 1.1.2 gal_vote_mapfiletype <1|2>
- 1.1.3 gal_vote_duration <iSeconds>
- 1.1.4 gal_vote_expirationcountdown <0|1>
- 1.1.5 gal_vote_announcechoice <0|1>
- 1.1.6 gal_vote_showstatus <0|1|2>
- 1.1.7 gal_vote_showstatustype <1|2>
- 1.1.8 amx_extendmap_max <fMinutes>
- 1.1.9 amx_extendmap_step <fMinutes>
- 1.2 Console Commands
- 1.1 CVARs
- 2 Server Features
- 3 Map Nominations
- 4 Rock the Vote
- 5 Runoff Voting
- 6 Ban Recent Maps
- 7 Weighted Admin Votes
- 8 Disable "votemap" and "listmaps" Commands
- 9 Change Map at End of Round
General Voting
These CVARs and commands may be used with or without enabling any of the other features. When specific features utilize any of these CVARs and commands, they'll be listed again in that feature's section.
CVARs
gal_vote_mapfile <cFile>
Specifies the file to use which either holds the names of the maps that players can nominate or is used in the map group feature to indicate how many maps to use from each group as determined by the gal_vote_mapfiletype CVAR. There is no default value.
If left blank, which it is by default, addons/amxmodx/configs/galileo/votefill.ini will be used. Otherwise, you must specify a fully qualified filename starting from your game mod folder (i.e. "cstrike", "dod", "czero", etc).
Example Values:
- mapcycle.txt
- ../../common_configs/galileo/votefill.ini
- addons/amxmodx/configs/galileo/nominatable.ini
gal_vote_mapfiletype <1|2>
Specifies the type of file gal_vote_mapfile is being used as.
Setting | Description |
1 | map listing |
2 | map group listing |
The default is 1.
When the value is 1, the file specified by gal_vote_mapfile is a listing of maps. Each map should be listed, one per line. Just like is done in mapcycle.txt.
Here is a short example:
as_oilrig cs_747 cs_assault cs_backalley cs_estate cs_havana
When the value is 2, the file specified by gal_vote_mapfile is formatted differently. Instead of listing maps, you would list the count of maps to pick from each map group, one count per line. You can have a maximum of 8 counts listed. This allows you to prioritize different groups of maps to use in filling a vote. It allows you to say, "pick up to X maps from this group first, then pick up to Y maps from this other group". You can have a maximum of 8 groups.
Here is an example of 3 counts listed:
3 3 2
The counts should not total more than the number of maps you allow in the vote. In the case of this example, the counts add up to 8, which happens to be the maximum number of maps that can be allowed in a vote.
Since I've listed three different counts, I'll need 3 different files to keep my map listings in.
The files must be named and located as such:
- ./amxmodx/configs/galileo/votefill/1.ini
- ./amxmodx/configs/galileo/votefill/2.ini
- ./amxmodx/configs/galileo/votefill/3.ini
Each of those files, 1.ini, 2.ini, and 3.ini, should contain a listing of maps.
Galileo will first load any nominated maps into the vote. It will then grab up to 3 maps from 1.ini, up to 3 from 2.ini, and up to 2 from 3.ini.
gal_vote_duration <iSeconds>
Specifies how long a map vote should last.
The default is 15 seconds.
gal_vote_expirationcountdown <0|1>
Specifies whether the vote expiration countdown should be displayed when there are 10 or fewer seconds left in a vote. It will count down from 10 to 0, at which point the vote will be over. It will only show to players that have not yet voted.
Setting Description 0 do not show the countdown 1 show the countdown
The default is 1.
gal_vote_announcechoice <0|1>
Specifies whether to announce each player's choice.
Setting Description 0 do not announce player's choice 1 announce player's choice
The default is 1.
gal_vote_showstatus <0|1|2>
Specifies when the vote progress should be shown to a player. A value of 0 disables this feature.
Setting Description 0 never 1 after player has voted 2 after vote ends
The default is 0.
gal_vote_showstatustype <1|2>
Specifies how to show the progress of a vote.
Setting Description 1 as vote count 2 as percentage of all votes cast
The default is 2.
amx_extendmap_max <fMinutes>
Specifies the maximum number of minutes a map can be played.
A value less than mp_timelimit will not let the map be extended. This is the same CVAR that AMXX provides.
The default is 90 minutes.
amx_extendmap_step <fMinutes>
Specifies the number of minutes a map will be extended each time the "Extend Map" option wins the map vote.
This is the same CVAR that AMXX provides.
The default is 15 minutes.
Console Commands
gal_startvote
Immediately starts a map vote.
gal_createmapfile [cFlags|cFilename]
Creates a map file listing all the maps located in the maps folder of the server.
There are various parameters that can be used with this command.
- If the command is used without any additional parameters, it will create a file named "allmaps.ini" in your game mod folder (i.e. "cstrike", "dod", "czero", etc).
- If a filename is specified, it will attempt to create that file. It must be a full qualified filename starting from your game mod folder. See the gal_nom_mapfile CVAR for examples of what you can enter as a filename.
- If "n", "v", or "nv" is specified, the files created will be based on the CVARs for nominatable maps and/or votefill maps, as applicable. See the gal_nom_mapfile CVAR to determine the name of the file that will be created when using the "n" flag. See the gal_votefill_mapfile CVAR to determine the name of the file that will be created when using the "v" flag.
Server Features
A variety of features related to the server.
CVARs
gal_srv_onrestart <iAction>
Specifies which action to take when it is detected that the server has been restarted.
Flag Description 0 default HL1 behavior 1 change to map being played at time of restart 2 change to what would have been the next map if not for the restart 3 start a map vote after the first two minutes 4 change to a randomly selected map from your nominatable maps
The default is 0.
Map Nominations
Allows players to nominate maps for inclusion in the next map vote.
Not all nominations are guaranteed to be used. If there are more nominations than are allowed in the vote, a random selection of the nominations will be used. See the gal_nom_qtyused CVAR description for more detail.
If a player disconnects, any nominations they had made will be cancelled.
CVARs
gal_nom_playerallowance <iNominationCnt>
Specifies how many nominations each player can make. A value of 0 will disable this feature.
The default is 2 nominations.
gal_nom_mapfile <cFile>
Specifies the file to use which holds the names of the maps that players can nominate.
There is no default value.
If left blank, which it is by default, addons/amxmodx/configs/galileo/nominatable.ini will be used. Otherwise, you must specify a fully qualified filename starting from your game mod folder (i.e. "cstrike", "dod", "czero", etc).
Example Values:
- mapcycle.txt
- ../../common_configs/galileo/nominatable.ini
gal_nom_qtyused <iNominationCnt>
Specifies how many of the nominations made will be considered for use in the next map vote. A value of 0 means all the nominated maps will be considered.
The default is 0 (all nominations).
gal_banrecent <iMapCount>
Specifies the number of recently played maps to disallow from being nominated.
The default is 3 maps.
Console Commands
gal_listmaps [partial mapname]
Lists all the nominatable maps as defined in the nominatable map file. See the gal_nom_mapfile CVAR description for more detail.
If a partial map name is given, only maps that contain the partial map name will be listed.
gal_createmapfile [cFlags|cFilename]
Creates a map file listing all the maps located in the maps folder of the server.
There are various parameters that can be used with this command.
- If the command is used without any additional parameters, it will create a file named "allmaps.ini" in your game mod folder (i.e. "cstrike", "dod", "czero", etc).
- If a filename is specified, it will attempt to create that file. It must be a full qualified filename starting from your game mod folder. See the gal_nom_mapfile CVAR for examples of what you can enter as a filename.
- If "n", "v", or "nv" is specified, the files created will be based on the CVARs for nominatable maps and/or votefill maps, as applicable. See the gal_nom_mapfile CVAR to determine the name of the file that will be created when using the "n" flag. See the gal_votefill_mapfile CVAR to determine the name of the file that will be created when using the "v" flag.
Say Commands
nominations
Lists all the nominations already made.
nominate <map>
Nominates the specified map.
cancel <map>
Cancels the player's previous nomination of the specified map.
<map>
Toggles between nominating and cancelling the specified map.
Rock the Vote
Allows players to rock the vote, thus registering their desire to force a vote for the next map.
CVARs
gal_rtv_commands <iFlags>
Specifies which say commands can be used to rock the vote. A value of 0 will disable this feature.
- The flags are additive.
Flag Description 1 standard "rockthevote" command 2 shorthand "rtv" command 4 dynamic "rockthe<anything>vote" command
The default is 3.
The dynamic "rockthe<anything>vote" command allows a player to type any one word (i.e. no spaces) that starts with "rockthe" and ends with "vote". Some examples might be: "rockthedamnvote", "rockthesillylittlevote", or "rockthefreakingvote". The total length of the word can not be longer than 31 characters. That leaves 20 characters for creativeness once you factor in the lengths of "rockthe" and "vote".
gal_rtv_start <fMinutes>
Specifies the number of minutes after a map starts that players may begin to rock the vote.
The default is 10 minutes.
gal_rtv_ratio <fRatio>
Indicates the ratio of players that need to rock the vote before a vote will be forced to occur.
The default is 0.60 (60%).
Say Commands
rockthevote
Registers the player's desire for an early map vote.
rtv
Alias for "rockthevote". This is the shorthand command.
rockthe<anything>vote
Alias for "rockthevote". This is the dynamic command. See the gal_rtv_commands CVAR description for more detail.
Runoff Voting
Allows a secondary vote of the two highest vote getting maps if a single map doesn't win the first vote by more than 50% of the total votes.
The runoff vote will utilize the applicable gal_vote_* CVARs, with the exception of gal_vote_duration, which is overridden by gal_runoff_duration.
Runoff voting can only occur if there are more than two maps with votes in the first vote.
CVARs
gal_runoff_enabled <0|1>
Specifies whether to allow runoff voting or not.
Setting Description 0 disable 1 enable
The default is 0.
gal_runoff_duration <iSeconds>
Specifies the number of seconds the runoff vote should last.
The default is 10 seconds.
Ban Recent Maps
Allows you to disallow recent maps from being voted on.
CVARs
gal_banrecent <iMapCount>
Specifies how many of the most recent maps are disallowed from a map vote. A value of 0 will disable this feature.
The default is 3.
gal_banrecentstyle <iStyle>
Indicates the style in which the recent maps are displayed.
Setting Description 1 all maps on one line 2 each map on a separate line
The default is 1.
Weighted Admin Votes
Allows admins to have a weighted (counted as more than 1) vote.
CVARs
gal_vote_weight <iVoteWeight>
Specifies how many votes a single admin vote should count as. A value of 0 or 1 will disable this feature.
The default is 2.
gal_vote_weight_flags <cAdminFlags>
Specifies the standard access flags needed to have weighted votes. You can specify multiple flags.
The default is "y" (the ADMIN_ADMIN flag).
Disable "votemap" and "listmaps" Commands
Allows the standard HL1 votemap command, and it's associated listmaps command, to be completely disabled.
CVARs
gal_disable_votemap <0|1>
Indicates if players can use the standard HL1 votemap and listmaps commands.
Setting Description 0 enable (standard behavior) 1 disable both commands
The default is 0.
Change Map at End of Round
Allows map changes to happen either immediately or after the end of a round, when time runs out. Useful for round-based servers.
CVARS
gal_endonround <0|1>
Indicates when a map should end when time runs out.
Setting Description 0 change map immediately (standard behavior) 1 change map after a round ends
The default is 1.