Raised This Month: $ Target: $400
 0% 

Galileo v5.9.1-925 (a feature rich map voting plugin) | Last Update: 2018-07-16


Post New Thread Reply   
 
Thread Tools Display Modes
addons_zz
Veteran Member
Join Date: Aug 2015
Location: Dreams, zz
Old 07-03-2016 , 13:58   Re: Galileo v2.6 (a feature rich map voting plugin) | Last Update: 09.04.2016
Reply With Quote #251

Quote:
Originally Posted by BeNq! View Post
Please Add cvar gal_whitelist_nom_block and message: "This map can't be nominated...".
It is done or almost, I am doing it.

Quote:
Originally Posted by BeNq! View Post
1. Why, when I change the map, next map timeleft = 0?
Wait until the final version 3.0 is finished to worry about it. But it must not be 0 if you do not did it. We can just discuss this after the version 3.0 release (This or next week), because I am developing others features, and if the time limit is being bad setted, it is easy to fix when everything is finished.

Quote:
Originally Posted by BeNq! View Post
2. Why 3 times performed function calculate_menu_dirt ?
It should be performed per second. Unless you configured it to not show the seconds remaining, and the vote status. But if you did that, and it is calculating unnecessary 3 times, instead of 1, we can easily fix it when the version 3.0 is released.

Quote:
Originally Posted by BeNq! View Post
3. Why galileo change map, when throw me a gun at the end of map? Should wait a few seconds ... as in deagle map manager ( gal_endonround_countdown ).

Would do well to add this cvar: gal_endonround_msg 0 = disabled and gal_endonround_countdown 0 = disabled.
Code:
// Indicates the end map type at the last seconds. // 0 - do not show the countdown, drop weapons or buy grenades. // 1 - show the countdown, drop weapons and buy grenades. gal_endonround_countdown 1 // Indicates how to announce the last round. If selected a value higher // than 0, this cvar indicates also the players minimum number necessary // to allow the last round to be finished when the time runs out. // 0 - to show only a chat print, saying that it is the last round. // 1 - to show chat and a constant HUD message during the last round. gal_endonround_msg 1
Are you using it as 1? It starts a countdown from 5, and after it throw throw your weapons and show the game scores.
__________________
Plugin: Sublime Text - ITE , Galileo
Multi-Mod: Manager / Plugin / Server

Support me on Patreon, Ko-fi, Liberapay or Open Collective
addons_zz is offline
BeNq!
Senior Member
Join Date: Mar 2009
Old 07-03-2016 , 14:11   Re: Galileo v2.6 (a feature rich map voting plugin) | Last Update: 09.04.2016
Reply With Quote #252

Quote:
Originally Posted by addons_zz View Post
Wait until the final version 3.0 is finished to worry about it. But it must not be 0 if you do not did it. We can just discuss this after the version 3.0 release (This or next week), because I am developing others features, and if the time limit is being bad setted, it is easy to fix when everything is finished.
This is bug. Change map = timelimit is 0, why?

Quote:
Originally Posted by addons_zz View Post
It should be performed per second. Unless you configured it to not show the seconds remaining, and the vote status. But if you did that, and it is calculating unnecessary 3 times, instead of 1, we can easily fix it when the version 3.0 is released.
I add client_print(0, print_chat, "test");
Code:
// to append it here to always shows it AFTER voting.     if( isVoteOver )     {         // add the header         formatex( menuHeader, charsmax( menuHeader ), "%s%L",         COLOR_YELLOW, player_id, "GAL_RESULT" );                 if( g_isToShowNoneOption         && g_voteShowNoneOptionType )         {             computeUndoButton( player_id, isToShowUndo, isVoteOver, noneOption, charsmax( noneOption ) );                         formatex( menuDirty, menuDirtySize, "%s^n%s^n^n%s%s^n^n%L",             menuHeader, voteStatus, noneOption, COLOR_YELLOW, player_id, "GAL_VOTE_ENDED" );         }         else         {             formatex( menuDirty, menuDirtySize, "%s^n%s^n^n%s%L",             menuHeader, voteStatus, COLOR_YELLOW, player_id, "GAL_VOTE_ENDED" );         }         client_print(0, print_chat, "test");     }

And chat:

test
test
test

WTF?

Quote:
Originally Posted by addons_zz View Post
It is done or almost, I am doing it.
Code:
// Indicates the end map type at the last seconds. // 0 - do not show the countdown, drop weapons or buy grenades. // 1 - show the countdown, drop weapons and buy grenades. gal_endonround_countdown 1 // Indicates how to announce the last round. If selected a value higher // than 0, this cvar indicates also the players minimum number necessary // to allow the last round to be finished when the time runs out. // 0 - to show only a chat print, saying that it is the last round. // 1 - to show chat and a constant HUD message during the last round. gal_endonround_msg 1
Are you using it as 1? It starts a countdown from 5, and after it throw throw your weapons and show the game scores.
What? I have gal_endonround_msg 1 and gal_endonround_countdown 0. It should wait a moment ( 5-6 second ).

Last edited by BeNq!; 07-03-2016 at 14:11.
BeNq! is offline
addons_zz
Veteran Member
Join Date: Aug 2015
Location: Dreams, zz
Old 07-03-2016 , 23:40   Re: Galileo v2.6 (a feature rich map voting plugin) | Last Update: 09.04.2016
Reply With Quote #253

Quote:
Originally Posted by BeNq! View Post
This is bug. Change map = timelimit is 0, why?
It is not changing it to 0 on my server. You must have mp_timelimit 0 on some config file.
Use the version "v2.6.1-121", but use the DEBUG_LEVEL 15, instead of 8. And attach the log file here.

Quote:
Originally Posted by BeNq! View Post
I add client_print(0, print_chat, "test");

And chat:

test
test
test
The first, is when the menu is show to you the first time.
The second, is after you vote.
The third, is when the vote ends and the results are showed.


Quote:
Originally Posted by BeNq! View Post
What? I have gal_endonround_msg 1 and gal_endonround_countdown 0. It should wait a moment ( 5-6 second ).
If you disable the count down, it will not wait. And it already wait the 'mp_chattime' seconds.
__________________
Plugin: Sublime Text - ITE , Galileo
Multi-Mod: Manager / Plugin / Server

Support me on Patreon, Ko-fi, Liberapay or Open Collective

Last edited by addons_zz; 07-03-2016 at 23:41.
addons_zz is offline
BeNq!
Senior Member
Join Date: Mar 2009
Old 07-04-2016 , 10:45   Re: Galileo v2.6 (a feature rich map voting plugin) | Last Update: 09.04.2016
Reply With Quote #254

Bug timelimit finished. It's okay.

v2.6.1-130:

Suggestion: If I open nomsmenu and I select the map, it after the message "GAL_NOM_FAIL_WHITELIST" should open the menu again, not close or add block, e.g.:

1. de_dust2 ( blocked )
2. de_dust ( blocked )
3. de_inferno
4. ....


And next bug. I have this options:

gal_whitelist_block_out 0 and I can nominated de_dust / de_inferno.

Code:
GALILEO PLUGIN VERSION v2.6.1-130 INITIATING...
L 07/04/2016 - 16:43:21: {1.0000} gal_debug_level: 29 | 1
L 07/04/2016 - 16:43:21: {1.0000}     ( readMapCycle ) Just returning/blocking on 'mapsProcessedNumber > g_nextMapCyclePosition'.
L 07/04/2016 - 16:43:21: {1.0000} I AM EXITING plugin_init(0)...
L 07/04/2016 - 16:43:21: {1.0000} 
L 07/04/2016 - 16:43:21: {1.0000} ( loadPluginSetttings ) g_configsDirPath: addons/amxmodx/configs/galileo, g_dataDirPath: addons/amxmodx/data/galileo,
L 07/04/2016 - 16:43:21: {1.0000} ( mp_fraglimitCvarSupport ) exists_mp_fraglimit_cvar: 0
L 07/04/2016 - 16:43:21: {1.0000} 
L 07/04/2016 - 16:43:21: {1.0000}  The current map is [de_dust2].
L 07/04/2016 - 16:43:21: {1.0000}  The next map is [de_chateau]
L 07/04/2016 - 16:43:21: {1.0000} 
L 07/04/2016 - 16:43:21: {1.0000} ( map_loadNominationList() ) cvar_nomMapFilePath: #
L 07/04/2016 - 16:43:21: {1.0000} 
L 07/04/2016 - 16:43:21: {1.0000}     map_populateList(...) Loading the MAPCYCLE! mapFilePath: mapcycle.txt
L 07/04/2016 - 16:43:21: {1.0000} map_populateList() 0, loadedMapName: $10000$
L 07/04/2016 - 16:43:21: {1.0000} map_populateList() 1, loadedMapName: aim_ak_colt_pool
L 07/04/2016 - 16:43:21: {1.0000} map_populateList() 2, loadedMapName: de_airstrip
L 07/04/2016 - 16:43:21: {1.0000} map_populateList() 3, loadedMapName: cs_havana
L 07/04/2016 - 16:43:21: {1.0000} map_populateList() 4, loadedMapName: de_chateau
L 07/04/2016 - 16:43:21: {1.0000} map_populateList() 5, loadedMapName: de_aztec
L 07/04/2016 - 16:43:21: {1.0000} map_populateList() 6, loadedMapName: as_oilrig
L 07/04/2016 - 16:43:21: {1.0000} map_populateList() 7, loadedMapName: cs_siege
L 07/04/2016 - 16:43:21: {1.0000} map_populateList() 8, loadedMapName: de_cbble
L 07/04/2016 - 16:43:21: {1.0000} map_populateList() 9, loadedMapName: de_dust
L 07/04/2016 - 16:43:21: {1.0000} map_populateList() 10, loadedMapName: cs_747
L 07/04/2016 - 16:43:21: {1.0000} map_populateList() 11, loadedMapName: de_prodigy
L 07/04/2016 - 16:43:21: {1.0000} map_populateList() 12, loadedMapName: cs_assault
L 07/04/2016 - 16:43:21: {1.0000} map_populateList() 13, loadedMapName: cs_office
L 07/04/2016 - 16:43:21: {1.0000} map_populateList() 14, loadedMapName: cs_italy
L 07/04/2016 - 16:43:21: {1.0000} map_populateList() 15, loadedMapName: cs_backalley
L 07/04/2016 - 16:43:21: {1.0000} map_populateList() 16, loadedMapName: cs_militia
L 07/04/2016 - 16:43:21: {1.0000} map_populateList() 17, loadedMapName: de_train
L 07/04/2016 - 16:43:21: {1.0000} map_populateList() 18, loadedMapName: de_dust2
L 07/04/2016 - 16:43:21: {1.0000} map_populateList() 19, loadedMapName: de_inferno
L 07/04/2016 - 16:43:21: {1.0000} map_populateList() 20, loadedMapName: de_nuke
L 07/04/2016 - 16:43:21: {1.0000} 
L 07/04/2016 - 16:43:21: {1.0000} I AM EXITING computeNextWhiteListLoadTime(2) | g_whitelistNomBlockTime: 1000, secondsForReload: 999
L 07/04/2016 - 16:43:21: {1.0000} 
L 07/04/2016 - 16:43:21: {1.0000} ( loadWhiteListFile ) 
L 07/04/2016 - 16:43:21: {1.0000} ( loadWhiteListFile ) If we are outside these hours, we must load these maps:
L 07/04/2016 - 16:43:21: {1.0000} ( loadWhiteListFile ) currentLine: 10-22 (currentHour: 16)
L 07/04/2016 - 16:43:21: {1.0000} ( loadWhiteListFile ) 10 >  22     :  0
L 07/04/2016 - 16:43:21: {1.0000} ( loadWhiteListFile ) 10 >= 16 > 22:  0, isToLoadTheseMaps: 0
L 07/04/2016 - 16:43:21: {1.0000} ( loadWhiteListFile ) 10 <  22     :  1
L 07/04/2016 - 16:43:21: {1.0000} ( loadWhiteListFile ) 10 <= 16 < 22:  1, isToLoadTheseMaps: 0
L 07/04/2016 - 16:43:21: {1.0000} I AM EXITING loadWhiteListFile(3) | listTrie: 4
L 07/04/2016 - 16:43:21: {1.0000} I AM EXITING plugin_cfg(0)...
L 07/04/2016 - 16:43:21: {1.0000} 
L 07/04/2016 - 16:44:29: {70.0001} ( cmd_say ) sentence: de_dust23, firstWord: de_dust23, secondWord: , thirdWord: 
L 07/04/2016 - 16:44:29: {70.0001} ( cmd_say ) the thirdWord is empty.
L 07/04/2016 - 16:44:29: {70.0001} ( cmd_say ) the secondWord is empty.
L 07/04/2016 - 16:44:29: {70.0001} ( cmd_say ) on the 1 word: else if( cvar_nomPlayerAllowance ), get_pcvar_num( cvar_nomPlayerAllowance ): 1
L 07/04/2016 - 16:44:29: {70.0001} ( cmd_say ) firstWord: de_dust23, g_mapPrefixes[0]: , containi( de_dust23,  )? -1
L 07/04/2016 - 16:44:29: {70.0001} ( cmd_say ) firstWord: de_dust23, g_mapPrefixes[1]: cs_, containi( de_dust23, cs_ )? -1
L 07/04/2016 - 16:44:29: {70.0001} ( cmd_say ) firstWord: de_dust23, g_mapPrefixes[2]: de_, containi( de_dust23, de_ )? 0
L 07/04/2016 - 16:44:29: {70.0001} ( nomination_getPlayer ) trieKey: 0
L 07/04/2016 - 16:44:29: {70.0001} ( nomination_getPlayer ) trieKey: 1
L 07/04/2016 - 16:44:29: {70.0001} ( nomination_getPlayer ) trieKey: 2
L 07/04/2016 - 16:44:29: {70.0001} ( nomination_getPlayer ) trieKey: 3
L 07/04/2016 - 16:44:29: {70.0001} ( nomination_getPlayer ) trieKey: 4
L 07/04/2016 - 16:44:29: {70.0001} ( nomination_getPlayer ) trieKey: 5
L 07/04/2016 - 16:44:29: {70.0001} ( nomination_getPlayer ) trieKey: 6
L 07/04/2016 - 16:44:29: {70.0001} ( nomination_getPlayer ) trieKey: 7
L 07/04/2016 - 16:44:29: {70.0001} ( nomination_getPlayer ) trieKey: 8
L 07/04/2016 - 16:44:29: {70.0001} ( nomination_getPlayer ) trieKey: 9
L 07/04/2016 - 16:44:29: {70.0001} ( nomination_getPlayer ) trieKey: 10
L 07/04/2016 - 16:44:29: {70.0001} ( nomination_getPlayer ) trieKey: 11
L 07/04/2016 - 16:44:29: {70.0001} ( nomination_getPlayer ) trieKey: 12
L 07/04/2016 - 16:44:29: {70.0001} ( nomination_getPlayer ) trieKey: 13
L 07/04/2016 - 16:44:29: {70.0001} ( nomination_getPlayer ) trieKey: 14
L 07/04/2016 - 16:44:29: {70.0001} ( nomination_getPlayer ) trieKey: 15
L 07/04/2016 - 16:44:29: {70.0001} ( nomination_getPlayer ) trieKey: 16
L 07/04/2016 - 16:44:29: {70.0001} ( nomination_getPlayer ) trieKey: 17
L 07/04/2016 - 16:44:29: {70.0001} ( nomination_getPlayer ) trieKey: 18
L 07/04/2016 - 16:44:29: {70.0001} ( nomination_getPlayer ) trieKey: 19
L 07/04/2016 - 16:44:29: {70.0001} ( nomination_getPlayer ) trieKey: 20
L 07/04/2016 - 16:44:29: {70.0001}     ( cmd_say ) Just Returning PLUGIN_HANDLED.
L 07/04/2016 - 16:44:30: {70.9603}     ( nomination_handleMatchChoice ) Just Returning PLUGIN_CONTINUE.
L 07/04/2016 - 16:44:32: {72.2908} ( cmd_say ) sentence: de_dust2, firstWord: de_dust2, secondWord: , thirdWord: 
L 07/04/2016 - 16:44:32: {72.2908} ( cmd_say ) the thirdWord is empty.
L 07/04/2016 - 16:44:32: {72.2908} ( cmd_say ) the secondWord is empty.
L 07/04/2016 - 16:44:32: {72.2908} ( cmd_say ) on the 1 word: else if( cvar_nomPlayerAllowance ), get_pcvar_num( cvar_nomPlayerAllowance ): 1
L 07/04/2016 - 16:44:32: {72.2908} ( nomination_getPlayer ) trieKey: 18
L 07/04/2016 - 16:44:32: {72.2908} ( map_nominate ) mapIndex: 18, mapName: de_dust2
L 07/04/2016 - 16:44:32: {72.2908}     ( map_nominate ) Just Returning/blocking, cannot nominate the current map.
L 07/04/2016 - 16:44:32: {72.2908}     ( cmd_say ) Just Returning PLUGIN_HANDLED.
L 07/04/2016 - 16:44:38: {78.8414} ( cmd_say ) sentence: de_dust, firstWord: de_dust, secondWord: , thirdWord: 
L 07/04/2016 - 16:44:38: {78.8414} ( cmd_say ) the thirdWord is empty.
L 07/04/2016 - 16:44:38: {78.8414} ( cmd_say ) the secondWord is empty.
L 07/04/2016 - 16:44:38: {78.8414} ( cmd_say ) on the 1 word: else if( cvar_nomPlayerAllowance ), get_pcvar_num( cvar_nomPlayerAllowance ): 1
L 07/04/2016 - 16:44:38: {78.8414} ( nomination_getPlayer ) trieKey: 9
L 07/04/2016 - 16:44:38: {78.8414} ( map_nominate ) mapIndex: 9, mapName: de_dust
L 07/04/2016 - 16:44:38: {78.8414} ( createPlayerNominationKey ) player_id: 1, trieKey: 89.230.140.167:27005STEAM_0:1:26617088,
L 07/04/2016 - 16:44:38: {78.8414} ( countPlayerNominations ) nominationCount: 0, trieKey: 89.230.140.167:27005STEAM_0:1:26617088, nominationOpenIndex: 0
L 07/04/2016 - 16:44:38: {78.8414} ( createPlayerNominationKey ) player_id: 1, trieKey: 89.230.140.167:27005STEAM_0:1:26617088,
L 07/04/2016 - 16:44:38: {78.8414} ( setPlayerNominationMapIndex ) playerNominationData[0]: -1
L 07/04/2016 - 16:44:38: {78.8414} ( setPlayerNominationMapIndex ) playerNominationData[1]: -1
L 07/04/2016 - 16:44:38: {78.8414} ( setPlayerNominationMapIndex ) playerNominationData[2]: -1
L 07/04/2016 - 16:44:38: {78.8414} ( setPlayerNominationMapIndex ) playerNominationData[3]: -1
L 07/04/2016 - 16:44:38: {78.8414} ( setPlayerNominationMapIndex ) playerNominationData[4]: -1
L 07/04/2016 - 16:44:38: {78.8414} ( setPlayerNominationMapIndex ) playerNominationData[5]: -1
L 07/04/2016 - 16:44:38: {78.8414} ( setPlayerNominationMapIndex ) playerNominationData[6]: -1
L 07/04/2016 - 16:44:38: {78.8414} ( setPlayerNominationMapIndex ) playerNominationData[7]: -1
L 07/04/2016 - 16:44:38: {78.8414} ( map_nominate ) nominationOpenIndex: 0, mapName: de_dust
L 07/04/2016 - 16:44:38: {78.8414}     ( cmd_say ) Just Returning PLUGIN_HANDLED.
------

2.6.1-132:

Option: gal_whitelist_block_out 0 or 1 - not working. I can nominated locked maps.

Code:
GALILEO PLUGIN VERSION v2.6.1-132 INITIATING...
L 07/04/2016 - 17:08:56: {1.0000} gal_debug_level: 29 | 1
L 07/04/2016 - 17:08:56: {1.0000}     ( readMapCycle ) Just returning/blocking on 'mapsProcessedNumber > g_nextMapCyclePosition'.
L 07/04/2016 - 17:08:56: {1.0000} I AM EXITING plugin_init(0)...
L 07/04/2016 - 17:08:56: {1.0000} 
L 07/04/2016 - 17:08:56: {1.0000} ( loadPluginSetttings ) g_configsDirPath: addons/amxmodx/configs/galileo, g_dataDirPath: addons/amxmodx/data/galileo,
L 07/04/2016 - 17:08:56: {1.0000} ( mp_fraglimitCvarSupport ) exists_mp_fraglimit_cvar: 0
L 07/04/2016 - 17:08:56: {1.0000} 
L 07/04/2016 - 17:08:56: {1.0000}  The current map is [de_dust2].
L 07/04/2016 - 17:08:56: {1.0000}  The next map is [de_airstrip]
L 07/04/2016 - 17:08:56: {1.0000} 
L 07/04/2016 - 17:08:56: {1.0000} ( map_loadNominationList() ) cvar_nomMapFilePath: #
L 07/04/2016 - 17:08:56: {1.0000} 
L 07/04/2016 - 17:08:56: {1.0000}     map_populateList(...) Loading the MAPCYCLE! mapFilePath: mapcycle.txt
L 07/04/2016 - 17:08:56: {1.0000} map_populateList() 0, loadedMapName: $10000$
L 07/04/2016 - 17:08:56: {1.0000} map_populateList() 1, loadedMapName: aim_ak_colt_pool
L 07/04/2016 - 17:08:56: {1.0000} map_populateList() 2, loadedMapName: de_airstrip
L 07/04/2016 - 17:08:56: {1.0000} map_populateList() 3, loadedMapName: cs_havana
L 07/04/2016 - 17:08:56: {1.0000} map_populateList() 4, loadedMapName: de_chateau
L 07/04/2016 - 17:08:56: {1.0000} map_populateList() 5, loadedMapName: de_aztec
L 07/04/2016 - 17:08:56: {1.0000} map_populateList() 6, loadedMapName: as_oilrig
L 07/04/2016 - 17:08:56: {1.0000} map_populateList() 7, loadedMapName: cs_siege
L 07/04/2016 - 17:08:56: {1.0000} map_populateList() 8, loadedMapName: de_cbble
L 07/04/2016 - 17:08:56: {1.0000} map_populateList() 9, loadedMapName: de_dust
L 07/04/2016 - 17:08:56: {1.0000} map_populateList() 10, loadedMapName: cs_747
L 07/04/2016 - 17:08:56: {1.0000} map_populateList() 11, loadedMapName: de_prodigy
L 07/04/2016 - 17:08:56: {1.0000} map_populateList() 12, loadedMapName: cs_assault
L 07/04/2016 - 17:08:56: {1.0000} map_populateList() 13, loadedMapName: cs_office
L 07/04/2016 - 17:08:56: {1.0000} map_populateList() 14, loadedMapName: cs_italy
L 07/04/2016 - 17:08:56: {1.0000} map_populateList() 15, loadedMapName: cs_backalley
L 07/04/2016 - 17:08:56: {1.0000} map_populateList() 16, loadedMapName: cs_militia
L 07/04/2016 - 17:08:56: {1.0000} map_populateList() 17, loadedMapName: de_train
L 07/04/2016 - 17:08:56: {1.0000} map_populateList() 18, loadedMapName: de_dust2
L 07/04/2016 - 17:08:56: {1.0000} map_populateList() 19, loadedMapName: de_inferno
L 07/04/2016 - 17:08:56: {1.0000} map_populateList() 20, loadedMapName: de_nuke
L 07/04/2016 - 17:08:56: {1.0000} 
L 07/04/2016 - 17:08:56: {1.0000} I AM EXITING computeNextWhiteListLoadTime(2) | g_whitelistNomBlockTime: 3065, secondsForReload: 3064
L 07/04/2016 - 17:08:56: {1.0000} 
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) 
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) If we are outside these hours, we must load these maps:
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) currentLine: 16-20 (currentHour: 17)
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) 16 >  20     :  0
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) 16 >= 17 > 20:  0, isToLoadTheseMaps: 0
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) 16 <  20     :  1
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) 16 <= 17 < 20:  1, isToLoadTheseMaps: 0
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) 
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) If we are outside these hours, we must load these maps:
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) currentLine: 20-16 (currentHour: 17)
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) 20 >  16     :  1
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) 20 >= 17 > 16:  1, isToLoadTheseMaps: 1
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) 20 <  16     :  0
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) 20 <= 17 < 16:  0, isToLoadTheseMaps: 1
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) Trying to add: de_dust2
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) OK!
L 07/04/2016 - 17:08:56: {1.0000} I AM EXITING loadWhiteListFile(3) | listTrie: 4
L 07/04/2016 - 17:08:56: {1.0000} 
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) 
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) If we are between these hours, we must load these maps:
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) currentLine: 16-20 (currentHour: 17)
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) 16 >  20     :  0
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) 16 >= 17 > 20:  0, isToLoadTheseMaps: 1
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) 16 <  20     :  1
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) 16 <= 17 < 20:  1, isToLoadTheseMaps: 1
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) Trying to add: de_inferno
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) OK!
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) Trying to add: de_nuke
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) OK!
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) Trying to add: de_aztec
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) OK!
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) Trying to add: de_dust
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) OK!
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) Trying to add: cs_747
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) OK!
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) Trying to add: de_prodigy
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) OK!
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) 
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) If we are between these hours, we must load these maps:
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) currentLine: 20-16 (currentHour: 17)
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) 20 >  16     :  1
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) 20 >= 17 > 16:  1, isToLoadTheseMaps: 0
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) 20 <  16     :  0
L 07/04/2016 - 17:08:56: {1.0000} ( loadWhiteListFile ) 20 <= 17 < 16:  0, isToLoadTheseMaps: 0
L 07/04/2016 - 17:08:56: {1.0000} I AM EXITING loadWhiteListFile(3) | listTrie: 5
L 07/04/2016 - 17:08:56: {1.0000} I AM EXITING plugin_cfg(0)...
L 07/04/2016 - 17:08:56: {1.0000} 
L 07/04/2016 - 17:09:17: {22.4760} ( sayNextMap ) Nastepna Mapa: de_airstrip, cvar_endOfMapVote: 1, cvar_nextMapChangeAnnounce: 1
L 07/04/2016 - 17:10:14: {80.3649} ( cmd_say ) sentence: nomsmenu, firstWord: nomsmenu, secondWord: , thirdWord: 
L 07/04/2016 - 17:10:14: {80.3649} ( cmd_say ) the thirdWord is empty.
L 07/04/2016 - 17:10:14: {80.3649} ( cmd_say ) the secondWord is empty.
L 07/04/2016 - 17:10:14: {80.3649} ( cmd_say ) on the 1 word: else if( cvar_nomPlayerAllowance ), get_pcvar_num( cvar_nomPlayerAllowance ): 1
L 07/04/2016 - 17:10:14: {80.3649} ( nomination_getPlayer ) trieKey: 0
L 07/04/2016 - 17:10:14: {80.3649} ( nomination_getPlayer ) trieKey: 1
L 07/04/2016 - 17:10:14: {80.3649} ( nomination_getPlayer ) trieKey: 2
L 07/04/2016 - 17:10:14: {80.3649} ( nomination_getPlayer ) trieKey: 3
L 07/04/2016 - 17:10:14: {80.3649} ( nomination_getPlayer ) trieKey: 4
L 07/04/2016 - 17:10:14: {80.3649} ( nomination_getPlayer ) trieKey: 5
L 07/04/2016 - 17:10:14: {80.3649} ( nomination_getPlayer ) trieKey: 6
L 07/04/2016 - 17:10:14: {80.3649} ( nomination_getPlayer ) trieKey: 7
L 07/04/2016 - 17:10:14: {80.3649} ( nomination_getPlayer ) trieKey: 8
L 07/04/2016 - 17:10:14: {80.3649} ( nomination_getPlayer ) trieKey: 9
L 07/04/2016 - 17:10:14: {80.3649} ( nomination_getPlayer ) trieKey: 10
L 07/04/2016 - 17:10:14: {80.3649} ( nomination_getPlayer ) trieKey: 11
L 07/04/2016 - 17:10:14: {80.3649} ( nomination_getPlayer ) trieKey: 12
L 07/04/2016 - 17:10:14: {80.3649} ( nomination_getPlayer ) trieKey: 13
L 07/04/2016 - 17:10:14: {80.3649} ( nomination_getPlayer ) trieKey: 14
L 07/04/2016 - 17:10:14: {80.3649} ( nomination_getPlayer ) trieKey: 15
L 07/04/2016 - 17:10:14: {80.3649} ( nomination_getPlayer ) trieKey: 16
L 07/04/2016 - 17:10:14: {80.3649} ( nomination_getPlayer ) trieKey: 17
L 07/04/2016 - 17:10:14: {80.3649} ( nomination_getPlayer ) trieKey: 18
L 07/04/2016 - 17:10:14: {80.3649} ( nomination_getPlayer ) trieKey: 19
L 07/04/2016 - 17:10:14: {80.3649} ( nomination_getPlayer ) trieKey: 20
L 07/04/2016 - 17:10:14: {80.3649}     ( cmd_say ) Just Returning PLUGIN_HANDLED.
Whitelist file:

Code:
[10-22]
de_inferno
de_nuke
de_aztec
de_dust
cs_747
de_prodigy

Last edited by BeNq!; 07-04-2016 at 11:16.
BeNq! is offline
addons_zz
Veteran Member
Join Date: Aug 2015
Location: Dreams, zz
Old 07-04-2016 , 13:14   Re: Galileo v2.6 (a feature rich map voting plugin) | Last Update: 09.04.2016
Reply With Quote #255

Quote:
Originally Posted by BeNq! View Post
Bug timelimit finished. It's okay.


And next bug. I have this options:

gal_whitelist_block_out 0 and I can nominated de_dust / de_inferno.

Option: gal_whitelist_block_out 0 or 1 - not working. I can nominated locked maps.


Whitelist file:

Code:
[10-22]
de_inferno
de_nuke
de_aztec
de_dust
cs_747
de_prodigy
It is not a bug, on your log file I see it is 17 hours, and the maps 'de_dust' / 'de_inferno' are on they allowed time.

It is an whitelist, it means they are allowed to be played only between 10-22, and now is 17 hours. So they are allowed. It is not a blacklist to block them between 10-22 hours.

So,
  1. if you try to play 'de_dust' / 'de_inferno' when it is 05 hours, you will be blocked.
  2. if you try to play 'de_dust' / 'de_inferno' when it is 22 hours, you will be blocked.
  3. if you try to play 'de_dust' / 'de_inferno' when it is 21 hours, you will be allowed.
  4. if you try to play 'de_dust' / 'de_inferno' when it is 10 hours, you will be allowed.
  5. and so on...


To block them between 10-22, change your config file to:
Code:
[22-10]
de_inferno
de_nuke
de_aztec
de_dust
cs_747
de_prodigy
__________________
Plugin: Sublime Text - ITE , Galileo
Multi-Mod: Manager / Plugin / Server

Support me on Patreon, Ko-fi, Liberapay or Open Collective
addons_zz is offline
Old 07-04-2016, 13:31
BeNq!
This message has been deleted by BeNq!.
addons_zz
Veteran Member
Join Date: Aug 2015
Location: Dreams, zz
Old 07-04-2016 , 13:37   Re: Galileo v2.6 (a feature rich map voting plugin) | Last Update: 09.04.2016
Reply With Quote #256

Quote:
Originally Posted by BeNq! View Post
Galileo v2.6.1-134

L 07/04/2016 - 190:44: [AMXX] Load error 17 (invalid file format or version) (plugin "galileo.amxx")

WTF? AMX MOD X 1.8.2.
It is working here. (1.8.2 too)
https://forums.alliedmods.net/showthread.php?t=244801

__________________
Plugin: Sublime Text - ITE , Galileo
Multi-Mod: Manager / Plugin / Server

Support me on Patreon, Ko-fi, Liberapay or Open Collective

Last edited by addons_zz; 07-04-2016 at 13:41. Reason: update
addons_zz is offline
BeNq!
Senior Member
Join Date: Mar 2009
Old 07-04-2016 , 14:45   Re: Galileo v2.6 (a feature rich map voting plugin) | Last Update: 09.04.2016
Reply With Quote #257

Sorry, this is my error. Delete post.

---

Quote:
Originally Posted by addons_zz View Post
It is not a bug, on your log file I see it is 17 hours, and the maps 'de_dust' / 'de_inferno' are on they allowed time.

It is an whitelist, it means they are allowed to be played only between 10-22, and now is 17 hours. So they are allowed. It is not a blacklist to block them between 10-22 hours.

So,
  1. if you try to play 'de_dust' / 'de_inferno' when it is 05 hours, you will be blocked.
  2. if you try to play 'de_dust' / 'de_inferno' when it is 22 hours, you will be blocked.
  3. if you try to play 'de_dust' / 'de_inferno' when it is 21 hours, you will be allowed.
  4. if you try to play 'de_dust' / 'de_inferno' when it is 10 hours, you will be allowed.
  5. and so on...
No. I use:

gal_whitelist_nom_block 1
gal_whitelist_block_out 0

- But I can't nominated, e.g. de_aztec, de_inferno... ;)

When I change gal_whitelist_block_out 0 -> 1



You see? All blocked... I can't nominat, e.g. de_aztec, de_inferno... ;) but when I write "cs_747" on chat = nominated...

Whitelist test:

Code:
[19-16]
de_dust
cs_747
de_prodigy
de_aztec

[16-19]
de_inferno
de_nuke
de_aztec
This is bug galileo ( menu maps ).

Last edited by BeNq!; 07-04-2016 at 14:57.
BeNq! is offline
addons_zz
Veteran Member
Join Date: Aug 2015
Location: Dreams, zz
Old 07-04-2016 , 19:53   Re: Galileo v2.6 (a feature rich map voting plugin) | Last Update: 09.04.2016
Reply With Quote #258

Quote:
Originally Posted by BeNq! View Post
No. I use:

gal_whitelist_nom_block 1
gal_whitelist_block_out 0



But I can't nominated, e.g. de_aztec, de_inferno... ;)
When I change gal_whitelist_block_out 0 -> 1
I do not understand very well. You cannot nominate 'de_nuke' and 'de_aztec', but what time is?
If it is 19:00 hours o'clock or more, you cannot because the rule is [16-19]. But if it is 18:59 you can.


Quote:
Originally Posted by BeNq! View Post


You see? All blocked... I can't nominat, e.g. de_aztec, de_inferno... ;) but when I write "cs_747" on chat = nominated...

Whitelist test:

Code:
[19-16]
de_dust
cs_747
de_prodigy
de_aztec

[16-19]
de_inferno
de_nuke
de_aztec
This is bug galileo ( menu maps ).
Thank you for reporting it. This is fixed on dev version v2.6.1-139.


Update:

I found a bug on the whitelist loading function, I am fixing it. I just saw, it was loading a group it must not.
__________________
Plugin: Sublime Text - ITE , Galileo
Multi-Mod: Manager / Plugin / Server

Support me on Patreon, Ko-fi, Liberapay or Open Collective

Last edited by addons_zz; 07-04-2016 at 22:49. Reason: update
addons_zz is offline
addons_zz
Veteran Member
Join Date: Aug 2015
Location: Dreams, zz
Old 07-05-2016 , 22:57   Re: Galileo v2.6 (a feature rich map voting plugin) | Last Update: 09.04.2016
Reply With Quote #259

Quote:
Originally Posted by BeNq! View Post
Sorry, this is my error. Delete post.
But I can't nominated, e.g. de_aztec, de_inferno... ;)

Whitelist test:

Code:
[19-16]
de_dust
cs_747
de_prodigy
de_aztec

[16-19]
de_inferno
de_nuke
de_aztec
I just fixed the Whitelist not loading properly. It is available on the development version 2.6.1-149 or newer.

Now I changed somethings:
Code:
[10-22]
de_dust2
de_inferno
So,
  1. If you try to play 'de_dust' / 'de_inferno' when it is 09 hours, you will be blocked.
  2. If you try to play 'de_dust' / 'de_inferno' when it is 10 hours, you will be allowed.
  3. If you try to play 'de_dust' / 'de_inferno' when it is 21 hours, you will be allowed.
  4. If you try to play 'de_dust' / 'de_inferno' when it is 22 hours, you will be allowed.
  5. If you try to play 'de_dust' / 'de_inferno' when it is 23 hours, you will be blocked.
  6. and so on...
Now [10-10] stands for from 10:00:00 until 10:59:59.
Now [10-11] stands for from 10:00:00 until 11:59:59.
Now [5-3] stands for from 5:00:00 (yesterday/today) until 3:59:59 (today/tomorrow).
Now [1-23] stands for from 1:00:00 until 23:59:59.
Now [1-22] stands for from 1:00:00 until 22:59:59.
Now [0-23] stands for from 0:00:00 until 23:59:59.
And so on...
__________________
Plugin: Sublime Text - ITE , Galileo
Multi-Mod: Manager / Plugin / Server

Support me on Patreon, Ko-fi, Liberapay or Open Collective

Last edited by addons_zz; 07-05-2016 at 22:59. Reason: misspellings
addons_zz is offline
Old 07-07-2016, 11:29
addons_zz
This message has been deleted by addons_zz. Reason: doubled post
Groven
AlliedModders Donor
Join Date: Apr 2011
Location: Sweden
Old 07-07-2016 , 11:39   Re: Galileo v3.0.0-162 (a feature rich map voting plugin) | Last Update: 07.07.2016
Reply With Quote #260

So why is this better than the normal Galileo thats already out there?
__________________
Groven is offline
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 09:10.


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