AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   New Plugin Submissions (https://forums.alliedmods.net/forumdisplay.php?f=26)
-   -   Galileo v5.9.1-925 (a feature rich map voting plugin) | Last Update: 2018-07-16 (https://forums.alliedmods.net/showthread.php?t=273019)

addons_zz 04-01-2016 15:27

Re: Galileo v2.4.1 (a feature rich map voting plugin) | Last Update: 01.04.2016
 
Release a new version hotfix:

2016-04-01 | v2.4.1
  1. Added to the nomination's menu title, it's LANG constant.
  2. Fixed the 'nomenu' using the wrong map selection.

chaves 04-01-2016 17:33

Re: Galileo v2.4 (a feature rich map voting plugin) | Last Update: 01.04.2016
 
Quote:

Originally Posted by addons_zz (Post 2407374)
I understood some maybe. So, just/only the 'gal_vote_minplayers' is not enought? Also you want to restrict/forbid the server players from nominate maps using 'gal_vote_minplayers_mapfile'?

And is the RTV feature working right for you now?



Yes, when you have "gal_vote_minplayers" can only appoint file maps "gal_vote_minplayers_mapfile" avoiding maps off the list when you have players at or below the value of gal_vote_minplayers
understood ?

chaves 04-01-2016 17:36

Re: Galileo v2.4 (a feature rich map voting plugin) | Last Update: 01.04.2016
 
Quote:

Originally Posted by addons_zz (Post 2407329)
This configuration you posted is not related to the cvar 'gal_rtv_wait_admin':
Code:
// Enable or disable the colored chat. // 0 - Disabled // 1 - Enabled gal_colored_chat_enabled 1
I just test and it is working, I can give RTV when I set the cvar 'gal_rtv_wait_admin' to 0. If it not working, If you have access to your game server's console, type the following in the server console:
  • amxx cvars
If you don't have access the your game server's console, join your server and type the
following in your game console:
  • rcon_password your_rcon_password
  • rcon amxx cvars
  1. Paste here *only* the CVARs that contain "galileo.amxx" in the last column
    from the amxx cvars command. They will be grouped together.


I can add new cvar 'gal_nom_minplayers' to dynamically change between the cvar 'gal_nom_mapfile' and 'gal_vote_minplayers_mapfile' depending the server players number. Is that what you want to?



AMX Mod X 1.8.3-dev+4753
Authors:
David "BAILOPAN" Anderson, Pavol "PM OnoTo" Marko, Felix "SniperBeamer" Geyer
Jonny "Got His Gun" Bergstrom, Lukasz "SidLuke" Wlasinski
Christian "Basic-Master" Hammacher, Borja "faluco" Ferrer
Scott "DS" Ehlert
Compiled: May 15 2015, 04:29:05
URL:http://www.amxmodx.org/
Core mode: JIT

addons_zz 04-01-2016 19:06

Re: Galileo v2.4 (a feature rich map voting plugin) | Last Update: 01.04.2016
 
Quote:

Originally Posted by chaves (Post 2407422)
Yes, when you have "gal_vote_minplayers" can only appoint file maps "gal_vote_minplayers_mapfile" avoiding maps off the list when you have players at or below the value of gal_vote_minplayers
understood ?

Yes, the RTV is working for you?

I am saying that 'gal_vote_minplayers_mapfile'/'gal_vote_minplayers', avoid automatically placing big maps when the map voting is started. Why it is not enough for you? Why do you need to ban the players nominations also? If the player want to nominate big maps and vote to it, why block them?

Quote:

Originally Posted by chaves (Post 2407424)
AMX Mod X 1.8.3-dev+4753
Authors:
David "BAILOPAN" Anderson, Pavol "PM OnoTo" Marko, Felix "SniperBeamer" Geyer
Jonny "Got His Gun" Bergstrom, Lukasz "SidLuke" Wlasinski
Christian "Basic-Master" Hammacher, Borja "faluco" Ferrer
Scott "DS" Ehlert
Compiled: May 15 2015, 04:29:05
URL:http://www.amxmodx.org/
Core mode: JIT

This is 'amxx version' not 'amxx cvars' as asked.

chaves 04-01-2016 19:13

Re: Galileo v2.4 (a feature rich map voting plugin) | Last Update: 01.04.2016
 
[QUOTE=addons_zz;2407444]Yes, the RTV is working for you?

I am saying that 'gal_vote_minplayers_mapfile'/'gal_vote_minplayers', avoid automatically placing big maps when the map voting is started. Why it is not enough for you? Why do you need to ban the players nominations also? If the player want to nominate big maps and vote to it, why block them?


It was that he wanted it, the latest version is that?

addons_zz 04-01-2016 19:25

Re: Galileo v2.4 (a feature rich map voting plugin) | Last Update: 01.04.2016
 
Quote:

Originally Posted by chaves (Post 2407448)
It was that he wanted it, the latest version is that?

If you configure the cvars 'gal_vote_minplayers_mapfile'/'gal_vote_minplayers', it can avoid automatically placing big maps when the map voting is started.

Read its documentation on the configuration file './addons/amxmodx/configs/galileo/galileo.cfg':
Code:
// Specifies the file to use which either holds the names of the maps, // one per line, that the vote will be filled with or is used in the // map group feature to specify how many maps to use from each group. // You can specify a relative path before the filename, relative from // your gamemod folder (i.e. "addons/amxmodx/configs/mymapcycle.txt"). // // The Map Groups Feature: // It uses whatever file you have set in the cvar 'gal_vote_mapfile'. // Normally, in that file you would just have a listing of maps, one // per line. But to use the groups feature, your 'gal_vote_mapfile' // cvar would point to a '.txt' file looking something like this: // [groups] // 2 // 1 // 1 // 3 // // The text "[groups]" has to be the very first line in the file, on // a line by itself.  The numbers, on separate lines, specifies how // many maps from each file to add to the voting menu. // // If you had a file within what was posted above, then you would // have to create the files: '1.ini', '2.ini', '3.ini', and '4.ini' // in the folder './configs/galileo/' folder. Each of those INI // files would contain a list of maps, one per line. // // Galileo will first load any nominated maps into the vote. Then // Galileo would pick 2 maps from '1.ini', 1 from '2.ini', 1 from // '3.ini', and 3 from '4.ini' until the maximum value of 8 to be // reached. // // Use * for all maps in the server's maps folder. // Use # for your mapcycle (whatever file is on the cvar 'mapcyclefile'). gal_vote_mapfile "*" // When there are less players than 'gal_vote_minplayers' on the server, // use a different map file list specified at the cvar 'gal_vote_minplayers_mapfile' // to fill the map voting as map fillers, instead of 'gal_vote_mapfile'. // A value of 0 or 1 will disable this feature. gal_vote_minplayers 0 // The map file to use when 'gal_vote_minplayers' is enabled. gal_vote_minplayers_mapfile "addons/amxmodx/configs/galileo/minplayers_mapcycle.txt" // The mapcycle whitelist is used when the cvar 'gal_vote_minplayers' // is set to 1 or higher. The mapcycle whitelist specifies the time where // its maps are allowed to be added to the voting list as fillers after // the nominations being loaded. The whitelist must follow this pattern: // // [10-22] // de_dust2 // de_inferno // // [23-05] // de_tuscan_mgc // de_mirage // // [05-10] // de_dust2_long // // Where the maps following '[10-22]' will be only allowed to be vote // map fillers between 10:00 and 22:00 o'clock. This feature should be // helpful because some servers have about only 10 players between // 05:00 and 10:00 o'clock, so they will be needing smalls maps for // playing. // gal_vote_whitelist_mapfile "addons/amxmodx/configs/galileo/whitelist_mapcycle.txt"

chaves 04-01-2016 19:29

Re: Galileo v2.4 (a feature rich map voting plugin) | Last Update: 01.04.2016
 
Quote:

Originally Posted by addons_zz (Post 2407455)
If you configure the cvars 'gal_vote_minplayers_mapfile'/'gal_vote_minplayers', it can avoid automatically placing big maps when the map voting is started.

Read its documentation on the configuration file './addons/amxmodx/configs/galileo/galileo.cfg':
Code:
// Specifies the file to use which either holds the names of the maps, // one per line, that the vote will be filled with or is used in the // map group feature to specify how many maps to use from each group. // You can specify a relative path before the filename, relative from // your gamemod folder (i.e. "addons/amxmodx/configs/mymapcycle.txt"). // // The Map Groups Feature: // It uses whatever file you have set in the cvar 'gal_vote_mapfile'. // Normally, in that file you would just have a listing of maps, one // per line. But to use the groups feature, your 'gal_vote_mapfile' // cvar would point to a '.txt' file looking something like this: // [groups] // 2 // 1 // 1 // 3 // // The text "[groups]" has to be the very first line in the file, on // a line by itself.  The numbers, on separate lines, specifies how // many maps from each file to add to the voting menu. // // If you had a file within what was posted above, then you would // have to create the files: '1.ini', '2.ini', '3.ini', and '4.ini' // in the folder './configs/galileo/' folder. Each of those INI // files would contain a list of maps, one per line. // // Galileo will first load any nominated maps into the vote. Then // Galileo would pick 2 maps from '1.ini', 1 from '2.ini', 1 from // '3.ini', and 3 from '4.ini' until the maximum value of 8 to be // reached. // // Use * for all maps in the server's maps folder. // Use # for your mapcycle (whatever file is on the cvar 'mapcyclefile'). gal_vote_mapfile "*" // When there are less players than 'gal_vote_minplayers' on the server, // use a different map file list specified at the cvar 'gal_vote_minplayers_mapfile' // to fill the map voting as map fillers, instead of 'gal_vote_mapfile'. // A value of 0 or 1 will disable this feature. gal_vote_minplayers 0 // The map file to use when 'gal_vote_minplayers' is enabled. gal_vote_minplayers_mapfile "addons/amxmodx/configs/galileo/minplayers_mapcycle.txt" // The mapcycle whitelist is used when the cvar 'gal_vote_minplayers' // is set to 1 or higher. The mapcycle whitelist specifies the time where // its maps are allowed to be added to the voting list as fillers after // the nominations being loaded. The whitelist must follow this pattern: // // [10-22] // de_dust2 // de_inferno // // [23-05] // de_tuscan_mgc // de_mirage // // [05-10] // de_dust2_long // // Where the maps following '[10-22]' will be only allowed to be vote // map fillers between 10:00 and 22:00 o'clock. This feature should be // helpful because some servers have about only 10 players between // 05:00 and 10:00 o'clock, so they will be needing smalls maps for // playing. // gal_vote_whitelist_mapfile "addons/amxmodx/configs/galileo/whitelist_mapcycle.txt"


it is already configured, but if players use "gal_lismaps" and name list of the maps will be considered and eventually become option in the vote, that would no longer be that the server would be within the limit or below the set here "gal_vote_minplayers "

addons_zz 04-01-2016 19:35

Re: Galileo v2.4 (a feature rich map voting plugin) | Last Update: 01.04.2016
 
Quote:

Originally Posted by chaves (Post 2407456)
it is already configured, but if players use "gal_lismaps" and name list of the maps will be considered and eventually become option in the vote, that would no longer be that the server would be within the limit or below the set here "gal_vote_minplayers "

Yes, they can nominate maps within the 'gal_lismaps' despite of 'gal_vote_minplayers'.

Why is it a problem? This happens all the time on your server? Is everybody complaining about that? Is it a really necessary feature?

chaves 04-01-2016 23:58

Re: Galileo v2.4 (a feature rich map voting plugin) | Last Update: 01.04.2016
 
Quote:

Originally Posted by addons_zz (Post 2407457)
Yes, they can nominate maps within the 'gal_lismaps' despite of 'gal_vote_minplayers'.

Why is it a problem? This happens all the time on your server? Is everybody complaining about that? Is it a really necessary feature?

so no use if they can still nominate maps off the list will take place votes deprogrammed large maps pro number of players, so staff speaks to vote regular TA and not stipulated a certain list

addons_zz 04-02-2016 16:49

Re: Galileo v2.5 (a feature rich map voting plugin) | Last Update: 02.04.2016
 
Quote:

Originally Posted by chaves (Post 2407480)
so no use if they can still nominate maps off the list will take place votes deprogrammed large maps pro number of players, so staff speaks to vote regular TA and not stipulated a certain list

Released a new version:

2016-04-02 | v2.5
  1. Add new cvar 'gal_nom_minplayers_control' to control the nominations voting map list behavior.

Code:
// Let the server players nominate maps from the nomination file list // 'gal_nom_mapfile', and: // 0 - Show the nominated maps at the map voting list. // 1 - Do NOT show those nominated maps at the map voting when the cvar //     'gal_vote_minplayers' is enabled and those nominated maps are NOT //     on the 'gal_vote_minplayers_mapfile' maps file list. gal_nom_minplayers_control 0


All times are GMT -4. The time now is 08:59.

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