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 03-23-2016 10:45

Re: Galileo v2.2.1 (a feature rich map voting plugin) | Last Update: 13.03.2016
 
Hi WaSaAa1. You are right, there is really a bug on it thank you for reporting. If you see something else new, just say it.

Quote:

I will try your version to check Galileo critical errors and try and solve them.
I would recommend to use the development version, as it already has some minor bug fixes and some variables naming are improved for reading.
https://github.com/addonszz/Galileo/commits/develop
https://github.com/addonszz/Galileo/archive/develop.zip

Quote:

When removing the previous code, the menu is replaced always, as for example in the CS 1.6, the menu teams often given as an open menu even having chosen team. (With weapons menu the same)
This bug probably happens when the cvar 'gal_vote_showstatus' is set to 0, 1 or 2.
I will fix it on next release and add a new cvar to allow the server's owners to chose a new behavior.
PHP Code:

// Indicates whether to replace any menu opened by the server players,
// when a voting is started, or to wait that menu to be closed before
// showing the voting menu.
// 0 - Waits the user to close his current menu, only then show the
//     new menu.
// 1 - Replace any opened menu.
gal_vote_replace_menu 0 


addons_zz 03-24-2016 20:14

Re: Galileo v2.3 (a feature rich map voting plugin) | Last Update: 24.03.2016
 
Released a newer version:

2016-03-24 | v2.3 ~ 2016-03-25 | v2.3.2
  1. Prevented the map from being played indefinitely when using the allow last round to be finished feature.
  2. Added a new cvar 'gal_vote_replace_menu' to allow always to replace any open menu by the voting menu.
  3. Fixed the voting menu not showing when the cvar 'gal_vote_showstatus' is set to 0 or 2.
  4. Fixed the cvar 'gal_vote_showstatus' option 0 showing a froze countdown timer.
  5. Fixed RTV voting not starting on some game mods as 'Sven Co-op'.
  6. Fixed the End Map Countdown showing after a normal voting.
  7. Fixed not restoring the time limit after a restart round on the server.
  8. Fixed the cancel voting feature not stopping the 'pending vote countdown' announcement.
  9. Fixed RTV voting showing Extend Map Option on early votes.

WaSaAa1 03-25-2016 09:05

Re: Galileo v2.3.1 (a feature rich map voting plugin) | Last Update: 25.03.2016
 
This part remains the same:
Code:

        get_user_menu( player_id, menu_id, menuKeysUnused )
       
        if( menu_id == 0 || menu_id == g_chooseMapQuestionMenuId )
        {
            show_menu( player_id, menuKeys, menu_body, ( g_pendingVoteCountdown == 1 ? 1 : 2 ), MENU_CHOOSEMAP_QUESTION )
        }

I doubt this can help with anything, you explain me?
Code:

stock isPlayerAbleToSeeTheVoteMenu( player_id )

{

    new menu_id;

    new menukeys_unused;

   

    get_user_menu( player_id, menu_id, menukeys_unused );

   

    return ( menu_id == 0

            || menu_id == g_chooseMapMenuId

            || get_pcvar_num( cvar_isToReplaceByVoteMenu ) != 0 );

}

I think there are better ways to solve the problem.

addons_zz 03-25-2016 11:26

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

Originally Posted by WaSaAa1 (Post 2405522)
This part remains the same:
Code:

        get_user_menu( player_id, menu_id, menuKeysUnused )
       
        if( menu_id == 0 || menu_id == g_chooseMapQuestionMenuId )
        {
            show_menu( player_id, menuKeys, menu_body, ( g_pendingVoteCountdown == 1 ? 1 : 2 ), MENU_CHOOSEMAP_QUESTION )
        }

I doubt this can help with anything, you explain me?

That menu is showed per second, so, it will be available as soon as the player closes his current menu. As it is not the vote menu, just a pre-question, I did not added it to override any user opened menu.

Quote:

Originally Posted by WaSaAa1 (Post 2405522)
Code:

stock isPlayerAbleToSeeTheVoteMenu( player_id )

{

    new menu_id;

    new menukeys_unused;

   

    get_user_menu( player_id, menu_id, menukeys_unused );

   

    return ( menu_id == 0

            || menu_id == g_chooseMapMenuId

            || get_pcvar_num( cvar_isToReplaceByVoteMenu ) != 0 );

}

I think there are better ways to solve the problem.

This 'get_pcvar_num( cvar_isToReplaceByVoteMenu )' is the new cvar added. If you put it to 1, any opened menu will always be overwritten. If not, the the voting menu will only be available as soon as the user closes his current menu. This works because now all the voting menu types are updated per second, so as soon as the user closes his current menu, the voting menu will be showed to him. If the user takes more than the voting time to closes his other menu, than it is supposed that he has more important things to do than to vote for the next map. But you always can force everybody closes theirs menus and see the voting menu, setting the cvar 'gal_vote_replace_menu' to 1 instead of 0.

feruchio 03-26-2016 19:21

Re: Galileo v2.3.2 (a feature rich map voting plugin) | Last Update: 25.03.2016
 
Hey can you fix the problem when on run off it shows two identical maps, thanks!

addons_zz 03-26-2016 23:32

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

Originally Posted by feruchio (Post 2405954)
Hey can you fix the problem when on run off it shows two identical maps, thanks!

Sure, you're welcome.

It happens over all your runoff voting or just some of them?
For now I am reviewing the code and re-testing all possibles cases I can think about.
But just i case could not find anything, and to speed up things, can you to do the following:

If you have access to your game server's console, type the following in the server console:
  • version
  • status
  • meta list
  • amxx list
  • 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:
  • version
  • status
  • rcon_password your_rcon_password
  • rcon meta list
  • rcon amxx list
  • rcon amxx cvars
  1. Paste here everything from the status command *except* the player list.
  2. Paste here the entire result from the meta list, version and amxx plugins commands.
  3. Paste here *only* the CVARs that contain "galileo.amxx" in the last column
    from the amxx cvars command. They will be grouped together.

feruchio 03-27-2016 07:15

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

Originally Posted by addons_zz (Post 2406016)
Sure, you're welcome.

It happens over all your runoff voting or just some of them?
For now I am reviewing the code and re-testing all possibles cases I can think about.
But just i case could not find anything, and to speed up things, can you to do the following:

If you have access to your game server's console, type the following in the server console:
  • status
  • meta list
  • amxx list
  • 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:
  • status
  • rcon_password your_rcon_password
  • rcon meta list
  • rcon amxx list
  • rcon amxx cvars
  1. Paste here everything from the status command *except* the player list.
  2. Paste here the entire result from the meta list and amxx plugins commands.
  3. Paste here *only* the CVARs that contain "galileo.amxx" in the last column
    from the amxx cvars command. They will be grouped together.

There it is all you wanted! It happens in half of the time not every time.:)

Code:

] status
hostname:  Awesome Cars + Fun Maps
version :  48/1.1.2.7/Stdio 696 insecure  (10)
tcp/ip  :  93.123.18.81:27017
map    :  car_fight at: 0 x, 0 y, 0 z
players :  21 active (21 max)

Code:

] rcon meta list
Currently loaded plugins:
      description      stat pend  file              vers      src  load  unlod
 [ 1] AMX Mod X        RUN  -    amxmodx_mm_i386.  v1.8.2    ini  Start ANY 
 [ 2] Reunion          RUN  -    reunion_mm_i386.  v0.1.67  ini  Start Never
 [ 3] WHBlocker        RUN  -    whblocker_mm_i38  v1.5.625  ini  Chlvl ANY 
 [ 4] ReSemiclip      RUN  -    resemiclip_mm_i3  v2.2(a)  ini  Chlvl ANY 
 [ 5] Revoice          RUN  -    revoice_mm_i386.  v0.1.22  ini  Start Never
 [ 6] SafeNameAndChat  RUN  -    SafeNameAndChat.  v1.0      ini  ANY  ANY 
 [ 7] Fun              RUN  -    fun_amxx_i386.so  v1.8.2    pl1  ANY  ANY 
 [ 8] Engine          RUN  -    engine_amxx_i386  v1.8.2    pl1  ANY  ANY 
 [ 9] FakeMeta        RUN  -    fakemeta_amxx_i3  v1.8.2    pl1  ANY  ANY 
 [10] CStrike          RUN  -    cstrike_amxx_i38  v1.8.2    pl1  ANY  ANY 
 [11] CSX              RUN  -    csx_amxx_i386.so  v1.8.2    pl1  ANY  ANY 
 [12] Ham Sandwich    RUN  -    hamsandwich_amxx  v1.8.2    pl1  ANY  ANY 
 [13] MySQL            RUN  -    mysql_amxx_i386.  v1.8.2    pl1  ANY  ANY 
13 plugins, 13 running


] rcon amxx list
Currently loaded plugins:
      name                    version    author            file            status 
 [  1] Anti Auto/Rebuy Crash  0.0.4      ConnorMcLeod      autobuyfix_conn  running 
 [  2] Server Packeting Prote  Version 1.  StevenlAFl        fullupdate.amxx  running 
 [  3] FullUpdate Delay        0.0.1      ConnorMcLeod      anti_fullupdate  running 
 [  4] Admin Base              1.8.2      AMXX Dev Team    admin.amxx      running 
 [  5] Admin Commands          1.8.2      AMXX Dev Team    admincmd.amxx    running 
 [  6] Admin Help              1.8.2      AMXX Dev Team    adminhelp.amxx  running 
 [  7] Slots Reservation      1.8.2      AMXX Dev Team    adminslots.amxx  running 
 [  8] Multi-Lingual System    1.8.2      AMXX Dev Team    multilingual.am  running 
 [  9] Menus Front-End        1.8.2      AMXX Dev Team    menufront.amxx  running 
 [ 10] Commands Menu          1.8.2      AMXX Dev Team    cmdmenu.amxx    running 
 [ 11] Players Menu            1.8.2      AMXX Dev Team    plmenu.amxx      running 
 [ 12] Maps Menu              1.8.2      AMXX Dev Team    mapsmenu.amxx    running 
 [ 13] Plugin Menu            1.8.2      AMXX Dev Team    pluginmenu.amxx  running 
 [ 14] Admin Chat              1.8.2      AMXX Dev Team    adminchat.amxx  running 

 [ 15] Anti Flood              1.8.2      AMXX Dev Team    antiflood.amxx  running 
 [ 16] Scrolling Message      1.8.2      AMXX Dev Team    scrollmsg.amxx  running 
 [ 17] Info. Messages          1.8.2      AMXX Dev Team    imessage.amxx    running 
 [ 18] Admin Votes            1.8.2      AMXX Dev Team    adminvote.amxx  running 
 [ 19] TimeLeft                1.8.2      AMXX Dev Team    timeleft.amxx    running 
 [ 20] Pause Plugins          1.8.2      AMXX Dev Team    pausecfg.amxx    running 
 [ 21] Stats Configuration    1.8.2      AMXX Dev Team    statscfg.amxx    running 
 [ 22] Restrict Weapons        1.8.2      AMXX Dev Team    restmenu.amxx    running 
 [ 23] CS Misc. Stats          1.8.2      AMXX Dev Team    miscstats.amxx  running 
 [ 24] Admin Check            1.51        OneEyed          admin_check.amx  running 
 [ 25] Galileo                v2.3.2      Brad Jones/Addon  galileo.amxx    debug   
 [ 26] AMXX Piss              2.0        KRoTaL            amxx_piss.amxx  running 
 [ 27] Reset Score            1.0        Silenttt          resetscore.amxx  running 
 [ 28] c4 timer                1.1        cheap_suit        c4timer.amxx    running 
 [ 29] Automatic knife duel    0.3        JGHG              automatic_knife  running 

 [ 30] Vehicle Real Killer    1.1        xPaw              VehicleRealKill  running 
 [ 31] ADV. QUAKE SOUNDS      5.0        HATTRICK (HTTRCK  QuakeSounds.amx  running 
 [ 32] Advanced Bullet Damage  1.0        Sn!ff3r          abd.amxx        running 
 [ 33] Advanced Roll The Dice  v2.5 RC 4  Striker          roll_the_dice.a  debug   
 [ 34] Admin VIP ScoreBoard    0.0.1      Exolent          admins-with-vip  running 
 [ 35] Admin Prefixes          4.0 WHITE  m0skVi4a ;]      AdminPrefixes_W  running 
 [ 36] StatsX (MastaMan Editi  1.8.2      AMXX Dev Team    statsx_shell.am  running 
 [ 37] Grenade Trail          1.0        Jim              grenade_trail.a  running 
 [ 38] VIP Extras              6.9        HNSWeed          vip_exstras.amx  running 
 [ 39] HE Knockback            2.0        1<<ThantiK|1<<Co  amx_heconc.amxx  running 
 [ 40] Unstick Player          1.0.2      Arkshine          unstick_player.  running 
 [ 41] Chicken bombs          0.4        JGHG              chicken_bombs.a  running 
 [ 42] GHW Auto Message Displ  2.1        GHW_Chronic      GHW_Message_Dis  running 
 [ 43] ChickenMod: Rebirth    1.0a        T(+)rget          amx_chicken.amx  debug   
 [ 44] Smoke Grenade Modes    0.2        VEN              smokegrenademod  running 

 [ 45] Parachute              1.3        KRoT@L/JTP10181  amx_parachute.a  running 
 [ 46] Permanent message      1.1        He3aBuCuM        permanent_messa  running 
 [ 47] Admin Model            1.2        whitemike        amx_adminmodel.  running 
 [ 48] Game Namer              Version 1.  NeuroToxin        gamenamechanger  running 
 [ 49] Auto Time Left message  1.0        { S p @ W n } ++  amx_timeleft_me  running 
 [ 50] Knife Double Frags Lit  0.3b        Rul4 + <UaI>(lit  kdf.amxx        running 
 [ 51] Last man bets          0.9.4      JGHG              lastmanbets_nop  running
 [ 52] WalkGuard              1.3.2      mogel            walkguard.amxx  running 
 [ 53] Reconnect Features      0.3.1      ConnorMcLeod      reconnect_featu  running 
 [ 54] Show Motd              1.0        Dachev            mapsinfo.amxx    running 
 [ 55] AMXX Gag                1.4.9      xPaw & Exolent    amx_gag.amxx    running 
 [ 56] PhAFK Manager          1.4        Phantomas        PhAFK.amxx      running 
 [ 57] Ultimate Revive        1.1        anakin_cstrike    ut_revive.amxx  running 
 [ 58] Vehicle Object Respawn  1.0        xPaw              func_vehicle_re  running 
 [ 59] Advanced Weapon Vote a  0.33        MagicShot        amx_advanced_we  running 

 [ 60] ATAC                    3.0.1      ATAC Team        atac.amxx        running 
 [ 61] Slap                    1.1        ATAC Team        atac_slap.amxx  running 
 [ 62] Slap2One                1.1        ATAC Team        atac_slap2one.a  running 
 [ 63] unknown                unknown    unknown          atac_slay.amxx  bad load
 [ 64] unknown                unknown    unknown          atac_spawnslay.  bad load
 [ 65] Jail                    1.1        ATAC Team        atac_jail.amxx  stopped 
 [ 66] Chicken                1.0        ATAC Team        atac_chicken.am  running 
 [ 67] Bury                    1.0        ATAC Team        atac_bury.amxx  running 
 [ 68] Glow                    1.0        ATAC Team        atac_glow.amxx  running 
 [ 69] Timebomb                1.1        ATAC Team        atac_bomb.amxx  running 
 [ 70] unknown                unknown    unknown          atac_blind.amxx  bad load
 [ 71] Rocket                  1.0        ATAC Team        atac_rocket.amx  running 
 [ 72] Drop                    1.0        ATAC Team        atac_drop.amxx  running 
 [ 73] Fire                    1.0        ATAC Team        atac_fire.amxx  running 
 [ 74] Drug                    1.0        ATAC Team        atac_drug.amxx  running 

 [ 75] unknown                unknown    unknown          atac_badaim.amx  bad load
 [ 76] unknown                unknown    unknown          atac_hudmsg.amx  bad load
 [ 77] unknown                unknown    unknown          atac_ta.amxx    bad load
 [ 78] unknown                unknown    unknown          atac_cmds.amxx  bad load
 [ 79] unknown                unknown    unknown          atac_amxbans.am  bad load
( 63) Load fails: Plugin file open error (plugin "atac_slay.amxx")
( 64) Load fails: Plugin file open error (plugin "atac_spawnslay.amxx")
( 70) Load fails: Plugin file open error (plugin "atac_blind.amxx")
( 75) Load fails: Plugin file open error (plugin "atac_badaim.amxx")
( 76) Load fails: Plugin file open error (plugin "atac_hudmsg.amxx")
( 77) Load fails: Plugin file open error (plugin "atac_ta.amxx")
( 78) Load fails: Plugin file open error (plugin "atac_cmds.amxx")
( 79) Load fails: Plugin file open error (plugin "atac_amxbans.amxx")
79 plugins, 70 running

Code:


[ 31] amx_extendmap_max        90                      galileo.amxx   
 [ 32] amx_extendmap_step      15                      galileo.amxx   
 [ 33] amx_extendmap_step_roun  30                      galileo.amxx   
 [ 34] amx_extendmap_allow_sta  0                        galileo.amxx   
 [ 35] amx_extendmap_allow_ord  0                        galileo.amxx   

 [ 36] amx_extendmap_allow_sta  0                        galileo.amxx   
 [ 37] gal_disabled_value_poin  0                        galileo.amxx   
 [ 38] gal_nextmap_change      1                        galileo.amxx   
 [ 39] gal_vote_show_counter    0                        galileo.amxx   
 [ 40] gal_vote_show_none      0                        galileo.amxx   
 [ 41] gal_vote_show_none_type  0                        galileo.amxx   
 [ 42] gal_colored_chat_enable  0                        galileo.amxx   
 [ 43] gal_in_empty_cycle      0                        galileo.amxx   
 [ 44] gal_unnominate_disconne  0                        galileo.amxx   
 [ 45] gal_endonround          1                        galileo.amxx   
 [ 46] gal_endofmapvote_start  0                        galileo.amxx   
 [ 47] gal_endonround_rtv      0                        galileo.amxx   
 [ 48] gal_endonround_msg      0                        galileo.amxx   
 [ 49] gal_vote_weight          2                        galileo.amxx   
 [ 50] gal_vote_weightflags    b                        galileo.amxx   
 [ 51] gal_cmd_votemap          0                        galileo.amxx   
 [ 52] gal_cmd_listmaps        2                        galileo.amxx   
 [ 53] gal_listmaps_paginate    10                      galileo.amxx 
 [ 54] gal_banrecent            3                        galileo.amxx   
 [ 55] gal_banrecentstyle      1                        galileo.amxx   
 [ 56] gal_endofmapvote        1                        galileo.amxx   
 [ 57] gal_endofmapvote_ask    0                        galileo.amxx   
 [ 58] gal_emptyserver_wait    10                      galileo.amxx   
 [ 59] gal_emptyserver_change  0                        galileo.amxx   
 [ 60] gal_emptyserver_mapfile  emptycycle.txt          galileo.amxx   
 [ 61] gal_srv_start            2                        galileo.amxx   
 [ 62] gal_srv_timelimit_resta  0                        galileo.amxx   
 [ 63] gal_srv_maxrounds_resta  0                        galileo.amxx   
 [ 64] gal_srv_winlimit_restar  0                        galileo.amxx   
 [ 65] gal_rtv_commands        3                        galileo.amxx   
 [ 66] gal_rtv_wait            4                        galileo.amxx   
 [ 67] gal_rtv_wait_rounds      5                        galileo.amxx   
 [ 68] gal_rtv_wait_admin      0                        galileo.amxx   
 [ 69] gal_rtv_ratio            0.70                    galileo.amxx   
 [ 70] gal_rtv_reminder        1                        galileo.amxx   
 [ 71] gal_nom_playerallowance  2                        galileo.amxx   

 [ 72] gal_nom_mapfile          mapcycle.txt            galileo.amxx   
 [ 73] gal_nom_prefixes        1                        galileo.amxx   
 [ 74] gal_nom_qtyused          0                        galileo.amxx   
 [ 75] gal_vote_duration        15                      galileo.amxx   
 [ 76] gal_vote_expirationcoun  1                        galileo.amxx   
 [ 77] gal_endonround_countdow  0                        galileo.amxx   
 [ 78] gal_vote_mapchoices      6                        galileo.amxx   
 [ 79] gal_vote_announcechoice  1                        galileo.amxx   
 [ 80] gal_vote_showstatus      1                        galileo.amxx   
 [ 81] gal_vote_replace_menu    0                        galileo.amxx   
 [ 82] gal_vote_showstatustype  2                        galileo.amxx   
 [ 83] gal_vote_uniqueprefixes  0                        galileo.amxx   
 [ 84] gal_runoff_enabled      1                        galileo.amxx   
 [ 85] gal_runoff_duration      15                      galileo.amxx   
 [ 86] gal_sounds_mute          0                        galileo.amxx   
 [ 87] gal_vote_mapfile        mapcycle.txt            galileo.amxx   
 [ 88] gal_vote_minplayers      0                        galileo.amxx   
 [ 89] gal_vote_minplayers_map                          galileo.amxx   

 [ 90] gal_vote_whitelist_mapf                          galileo.amxx   
 [ 91] amx_nextmap              car_fight                galileo.amxx   
 [ 92] gal_version              v2.3.2                  galileo.amxx   
 [ 93] gal_server_starting      0                        galileo.amxx


Mordekay 03-27-2016 11:06

Re: Galileo v2.3.2 (a feature rich map voting plugin) | Last Update: 25.03.2016
 
no-steam = no support

chaves 03-27-2016 11:08

Re: Galileo v2.3.2 (a feature rich map voting plugin) | Last Update: 25.03.2016
 
when using this option to activate the server goes down, you can help me?

// Enable or disable the colored chat.
// 0 - Disabled
// 1 - Enabled
gal_colored_chat_enabled 1

gabuch2 03-27-2016 11:55

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

Originally Posted by Mordekay (Post 2406140)
no-steam = no support

What?

My server is 100% steam and I have the same problem

Go witchhunt somewhere else.

Mordekay 03-27-2016 12:15

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

Originally Posted by Shattered Heart Lynx (Post 2406150)
What?

My server is 100% steam and I have the same problem

Go witchhunt somewhere else.

Sorry, i dind't thought i had to quote someone that made the last comment before me.

addons_zz 03-27-2016 14:38

Re: Galileo v2.3.3 (a feature rich map voting plugin) | Last Update: 27.03.2016
 
Released a new version:

2016-03-27 | v2.3.3 ~ v2.3.4
  1. Fixed the runoff voting showing two identical maps on some votings.
  2. Fixed re-showing the voting menu to all players after one single player voting.
  3. Fixed a possibility to show a wrong map on some runoff votings.
  4. Fixed the DEBUG_LEVEL 2 doing double voting when using the cvar 'gal_endofmapvote_start'.
  5. Added the ability to cancel the map ending when forcing a new voting.

addons_zz 03-27-2016 19:55

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

Originally Posted by chaves (Post 2406142)
when using this option to activate the server goes down, you can help me?

// Enable or disable the colored chat.
// 0 - Disabled
// 1 - Enabled
gal_colored_chat_enabled 1

Of course. This option is by default active on the new configuration file, i.e., set to 1. Do you want to deactivated it?

Are you updating from version 1.1.290? Do you installed the new LANG file? To speed up things, can you to do the following not using that option which let your server goes down?

If you have access to your game server's console, type the following in the server console:
  • version
  • status
  • meta list
  • amxx list
  • 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:
  • version
  • status
  • rcon_password your_rcon_password
  • rcon meta list
  • rcon amxx list
  • rcon amxx cvars
  1. Paste here everything from the status command *except* the player list.
  2. Paste here the entire result from the version, meta list and amxx list commands.
  3. Paste here *only* the CVARs that contain "galileo.amxx" in the last column
    from the amxx cvars command. They will be grouped together.

chaves 03-28-2016 22:10

Re: Galileo v2.3.4 (a feature rich map voting plugin) | Last Update: 27.03.2016
 
1st version I downloaded knocked, downloaded the latest and did not fall more, but found a failure to enter "recentmaps" appears "nominate map" when it should appear "recentmaps" and list of recently played maps, help?

I do not know picture post here

feruchio 03-29-2016 09:58

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

Originally Posted by Shattered Heart Lynx (Post 2406150)
What?

My server is 100% steam and I have the same problem

Go witchhunt somewhere else.

Well said bro!:wink:

Quote:

Originally Posted by addons_zz (Post 2406211)
Released a new version:

2016-03-27 | v2.3.3 ~ v2.3.4
  1. Fixed the runoff voting showing two identical maps on some votings.
  2. Fixed re-showing the voting menu to all players after one single player voting.
  3. Fixed a possibility to show a wrong map on some runoff votings.
  4. Fixed the DEBUG_LEVEL 2 doing double voting when using the cvar 'gal_endofmapvote_start'.
  5. Added the ability to cancel the map ending when forcing a new voting.

Thank you a lot dude, you are amazing for the first time someone actually to fix something after I am report issue. Keep it up!:fox:

addons_zz 03-29-2016 12:07

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

Originally Posted by chaves (Post 2406562)
1st version I downloaded knocked, downloaded the latest and did not fall more, but found a failure to enter "recentmaps" appears "nominate map" when it should appear "recentmaps" and list of recently played maps, help?
I do not know picture post here

When you use 'recentmaps' it try to 'nominate map', if so, later I will look into to see if they are working properly.

Quote:

Originally Posted by feruchio (Post 2406655)
Thank you a lot dude

You are welcome.

chaves 03-29-2016 21:28

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

Originally Posted by addons_zz (Post 2406678)
When you use 'recentmaps' it try to 'nominate map', if so, later I will look into to see if they are working properly.


You are welcome.


the "recentmaps" function! is correct, the title menu to appear on the screen which is written "NOMINTE MAP" as if the list below were named maps when they are actually newly played, I was in the .txt file translator and did not see error there

YParushev 03-30-2016 08:34

Re: Galileo v2.3.4 (a feature rich map voting plugin) | Last Update: 27.03.2016
 
Yes, the nomination menu does not work correctly.
This is my log with errors.

Code:

L 03/30/2016 - 13:27:19: [AMXX] Run time error 10: native error (native "menu_destroy")
L 03/30/2016 - 13:27:19: [AMXX]    [0] galileo.sma::nomination_attempt (line 2215)
L 03/30/2016 - 13:27:19: [AMXX]    [1] galileo.sma::cmd_say (line 2133)


addons_zz 03-30-2016 10:52

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

Originally Posted by chaves (Post 2406785)
the "recentmaps" function! is correct, the title menu to appear on the screen which is written "NOMINTE MAP" as if the list below were named maps when they are actually newly played, I was in the .txt file translator and did not see error there

Quote:

Originally Posted by YParushev (Post 2406847)
Yes, the nomination menu does not work correctly.
This is my log with errors.

Code:

L 03/30/2016 - 13:27:19: [AMXX] Run time error 10: native error (native "menu_destroy")
L 03/30/2016 - 13:27:19: [AMXX]    [0] galileo.sma::nomination_attempt (line 2215)
L 03/30/2016 - 13:27:19: [AMXX]    [1] galileo.sma::cmd_say (line 2133)


Thank you both for reporting.

When I can, I will fix it and release a new version.

YParushev 03-30-2016 20:03

Re: Galileo v2.3.4 (a feature rich map voting plugin) | Last Update: 27.03.2016
 
After your repair they are wrong position maps

addons_zz 03-30-2016 20:11

Re: Galileo v2.3.4 (a feature rich map voting plugin) | Last Update: 27.03.2016
 
1 Attachment(s)
Quote:

Originally Posted by YParushev (Post 2406941)
After your repair they are wrong position maps

Now the nomination menu is working fine on the version 2.3.5d

Here attached is a update to prevent you error from happening, it also fix the 'recentmaps' menu showing its title as 'Nominate'. When there is enough changes I I will release a new version on the first post and post it change log here.

YParushev 03-30-2016 20:15

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

Originally Posted by addons_zz (Post 2406942)
Now the nomination menu is working the version 2.3.5d

The menu works, but the positions of the maps are wrong.

addons_zz 03-30-2016 20:33

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

Originally Posted by YParushev (Post 2406943)
The menu works, but the positions of the maps are wrong.

I just tested and it is working fine. Here is a video:
https://vid.me/fPBR

If it is not working, bring this information if you have access to your game server's console, type the following in the server console:
  • status
  • version
  • meta list
  • amxx list
  • 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:
  • status
  • rcon_password your_rcon_password
  • rcon version
  • rcon meta list
  • rcon amxx list
  • rcon amxx cvars
  1. Paste here everything from the status command *except* the player list.
  2. Paste here the entire result from the version, meta list and amxx list commands.
  3. Paste here *only* the CVARs that contain "galileo.amxx" in the last column
    from the amxx cvars command. They will be grouped together.

YParushev 03-30-2016 21:04

Re: Galileo v2.3.4 (a feature rich map voting plugin) | Last Update: 27.03.2016
 
Status:
Code:

version :  48/1.1.2.7 6132 secure  (10)
map    :  bkz_goldbhop at: 0 x, 0 y, 0 z
players :  1 active (15 max)



Version:

Code:

Protocol version 48
Exe version 1.1.2.7/Stdio (cstrike)
Exe build: 13:14:12 Aug 29 2013 (6153)

Meta list:
Code:

      description      stat pend  file              vers      src  load  unlod
[ 1] AMX Mod X        RUN  -    amxmodx_mm.dll    v1.8.2    ini  Start ANY 
 [ 2] Fun              RUN  -    fun_amxx.dll      v1.8.2    pl1  ANY  ANY 
 [ 3] Engine          RUN  -    engine_amxx.dll  v1.8.2    pl1  ANY  ANY 
 [ 4] FakeMeta        RUN  -    fakemeta_amxx.dl  v1.8.2    pl1  ANY  ANY 
 [ 5] CStrike          RUN  -    cstrike_amxx.dll  v1.8.2    pl1  ANY  ANY 
 [ 6] CSX              RUN  -    csx_amxx.dll      v1.8.2    pl1  ANY  ANY 
 [ 7] Ham Sandwich    RUN  -    hamsandwich_amxx  v1.8.2    pl1  ANY  ANY 
7 plugins, 7 running

Amxx list:

Code:

AMX Mod X 1.8.2
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 "Damaged Soul" Ehlert
Compiled: Feb 14 2013, 00:56:31
URL:http://www.amxmodx.org/
Core mode: JIT

Galileo cvars :

Code:

[ 24] amx_extendmap_max        90                      galileo.amxx   
 [ 25] amx_extendmap_step      15                      galileo.amxx   
 [ 26] amx_extendmap_step_roun  30                      galileo.amxx   
 [ 27] amx_extendmap_allow_sta  1                        galileo.amxx   
 [ 28] amx_extendmap_allow_ord  1                        galileo.amxx   
 [ 29] amx_extendmap_allow_sta  0                        galileo.amxx   
 [ 30] gal_disabled_value_poin  0                        galileo.amxx   
 [ 31] gal_nextmap_change      0                        galileo.amxx   
 [ 32] gal_vote_show_counter    1                        galileo.amxx   
 [ 33] gal_vote_show_none      1                        galileo.amxx   
 [ 34] gal_vote_show_none_type  2                        galileo.amxx   
 [ 35] gal_colored_chat_enable  1                        galileo.amxx   

 [ 36] gal_in_empty_cycle      0                        galileo.amxx   
 [ 37] gal_unnominate_disconne  0                        galileo.amxx   
 [ 38] gal_endonround          0                        galileo.amxx   
 [ 39] gal_endofmapvote_start  1                        galileo.amxx   
 [ 40] gal_endonround_rtv      0                        galileo.amxx   
 [ 41] gal_endonround_msg      0                        galileo.amxx   
 [ 42] gal_vote_weight          0                        galileo.amxx   
 [ 43] gal_vote_weightflags    y                        galileo.amxx   
 [ 44] gal_cmd_votemap          0                        galileo.amxx   
 [ 45] gal_cmd_listmaps        2                        galileo.amxx   
 [ 46] gal_listmaps_paginate    30                      galileo.amxx   
 [ 47] gal_banrecent            3                        galileo.amxx   
 [ 48] gal_banrecentstyle      3                        galileo.amxx   
 [ 49] gal_endofmapvote        1                        galileo.amxx   
 [ 50] gal_endofmapvote_ask    1                        galileo.amxx   
 [ 51] gal_emptyserver_wait    0                        galileo.amxx   
 [ 52] gal_emptyserver_change  0                        galileo.amxx   
 [ 53] gal_emptyserver_mapfile  addons/amxmodx/configs/  galileo.amxx   



addons_zz 03-30-2016 21:17

Re: Galileo v2.3.4 (a feature rich map voting plugin) | Last Update: 27.03.2016
 
The last cvars are missing. They are:
Code:

[ 60] gal_emptyserver_mapfile  emptycycle.txt          galileo.amxx   
 [ 61] gal_srv_start            2                        galileo.amxx   
 [ 62] gal_srv_timelimit_resta  0                        galileo.amxx   
 [ 63] gal_srv_maxrounds_resta  0                        galileo.amxx   
 [ 64] gal_srv_winlimit_restar  0                        galileo.amxx   
 [ 65] gal_rtv_commands        3                        galileo.amxx   
 [ 66] gal_rtv_wait            4                        galileo.amxx   
 [ 67] gal_rtv_wait_rounds      5                        galileo.amxx   
 [ 68] gal_rtv_wait_admin      0                        galileo.amxx   
 [ 69] gal_rtv_ratio            0.70                    galileo.amxx   
 [ 70] gal_rtv_reminder        1                        galileo.amxx   
 [ 71] gal_nom_playerallowance  2                        galileo.amxx   
 [ 72] gal_nom_mapfile          mapcycle.txt            galileo.amxx   
 [ 73] gal_nom_prefixes        1                        galileo.amxx   
 [ 74] gal_nom_qtyused          0                        galileo.amxx   
 [ 75] gal_vote_duration        15                      galileo.amxx   
 [ 76] gal_vote_expirationcoun  1                        galileo.amxx   
 [ 77] gal_endonround_countdow  0                        galileo.amxx   
 [ 78] gal_vote_mapchoices      6                        galileo.amxx   
 [ 79] gal_vote_announcechoice  1                        galileo.amxx   
 [ 80] gal_vote_showstatus      1                        galileo.amxx   
 [ 81] gal_vote_replace_menu    0                        galileo.amxx   
 [ 82] gal_vote_showstatustype  2                        galileo.amxx   
 [ 83] gal_vote_uniqueprefixes  0                        galileo.amxx   
 [ 84] gal_runoff_enabled      1                        galileo.amxx   
 [ 85] gal_runoff_duration      15                      galileo.amxx   
 [ 86] gal_sounds_mute          0                        galileo.amxx   
 [ 87] gal_vote_mapfile        mapcycle.txt            galileo.amxx   
 [ 88] gal_vote_minplayers      0                        galileo.amxx   
 [ 89] gal_vote_minplayers_map                          galileo.amxx   
 [ 90] gal_vote_whitelist_mapf                          galileo.amxx   
 [ 91] amx_nextmap              car_fight                galileo.amxx   
 [ 92] gal_version              v2.3.2                  galileo.amxx   
 [ 93] gal_server_starting      0                        galileo.amxx

You bring 'amxx version' instead of 'amxx list':
Code:

amxx version
AMX Mod X 1.8.2-dev (http://www.amxmodx.org)
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 "Damaged Soul" Ehlert
Compiled: Aug  7 2011, 22:10:33
Build ID: 1.8.2-dev 9:7ff502465eae
Core mode: JIT+ASM32


YParushev 03-30-2016 21:33

Re: Galileo v2.3.4 (a feature rich map voting plugin) | Last Update: 27.03.2016
 
Opps sry

Code:

[  1] Admin Base              1.8.2      AMXX Dev Team    admin.amxx      running 
 [  2] Admin Commands          1.8.2      AMXX Dev Team    admincmd.amxx    running 
 [  3] Admin Help              1.8.2      AMXX Dev Team    adminhelp.amxx  running 
 [  4] Slots Reservation      1.8.2      AMXX Dev Team    adminslots.amxx  running 
 [  5] Multi-Lingual System    1.8.2      AMXX Dev Team    multilingual.am  running 
 [  6] Menus Front-End        1.8.2      AMXX Dev Team    menufront.amxx  running 
 [  7] Commands Menu          1.8.2      AMXX Dev Team    cmdmenu.amxx    running 
 [  8] Players Menu            1.8.2      AMXX Dev Team    plmenu.amxx      running 
 [  9] Maps Menu              1.8.2      AMXX Dev Team    mapsmenu.amxx    running 
 [ 10] Plugin Menu            1.8.2      AMXX Dev Team    pluginmenu.amxx  running 
 [ 11] Admin Chat              1.8.2      AMXX Dev Team    adminchat.amxx  running 
 [ 12] Anti Flood              1.8.2      AMXX Dev Team    antiflood.amxx  running 
 [ 13] Scrolling Message      1.8.2      AMXX Dev Team    scrollmsg.amxx  running 
 [ 14] Info. Messages          1.8.2      AMXX Dev Team    imessage.amxx    running 

 [ 15] Admin Votes            1.8.2      AMXX Dev Team    adminvote.amxx  running 
 [ 16] Galileo                v2.3.5d    Brad Jones/Addon  galileo.amxx    debug   
 [ 17] TimeLeft                1.8.2      AMXX Dev Team    timeleft.amxx    running 
 [ 18] Pause Plugins          1.8.2      AMXX Dev Team    pausecfg.amxx    running 
 [ 19] Stats Configuration    1.8.2      AMXX Dev Team    statscfg.amxx    running 
 [ 20] StatsX                  1.8.2      AMXX Dev Team    statsx.amxx      running 
20 plugins, 20 running


addons_zz 03-30-2016 22:11

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

Originally Posted by addons_zz (Post 2406953)
The last cvars are missing. They are:
Code:
 [ 60] gal_emptyserver_mapfile  emptycycle.txt           galileo.amxx      [ 61] gal_srv_start            2                        galileo.amxx      [ 62] gal_srv_timelimit_resta  0                        galileo.amxx      [ 63] gal_srv_maxrounds_resta  0                        galileo.amxx      [ 64] gal_srv_winlimit_restar  0                        galileo.amxx      [ 65] gal_rtv_commands         3                        galileo.amxx      [ 66] gal_rtv_wait             4                        galileo.amxx      [ 67] gal_rtv_wait_rounds      5                        galileo.amxx      [ 68] gal_rtv_wait_admin       0                        galileo.amxx      [ 69] gal_rtv_ratio            0.70                     galileo.amxx      [ 70] gal_rtv_reminder         1                        galileo.amxx      [ 71] gal_nom_playerallowance  2                        galileo.amxx      [ 72] gal_nom_mapfile          mapcycle.txt             galileo.amxx      [ 73] gal_nom_prefixes         1                        galileo.amxx      [ 74] gal_nom_qtyused          0                        galileo.amxx      [ 75] gal_vote_duration        15                       galileo.amxx      [ 76] gal_vote_expirationcoun  1                        galileo.amxx      [ 77] gal_endonround_countdow  0                        galileo.amxx      [ 78] gal_vote_mapchoices      6                        galileo.amxx      [ 79] gal_vote_announcechoice  1                        galileo.amxx      [ 80] gal_vote_showstatus      1                        galileo.amxx      [ 81] gal_vote_replace_menu    0                        galileo.amxx      [ 82] gal_vote_showstatustype  2                        galileo.amxx      [ 83] gal_vote_uniqueprefixes  0                        galileo.amxx      [ 84] gal_runoff_enabled       1                        galileo.amxx      [ 85] gal_runoff_duration      15                       galileo.amxx      [ 86] gal_sounds_mute          0                        galileo.amxx      [ 87] gal_vote_mapfile         mapcycle.txt             galileo.amxx      [ 88] gal_vote_minplayers      0                        galileo.amxx      [ 89] gal_vote_minplayers_map                           galileo.amxx      [ 90] gal_vote_whitelist_mapf                           galileo.amxx      [ 91] amx_nextmap              car_fight                galileo.amxx      [ 92] gal_version              v2.3.2                   galileo.amxx      [ 93] gal_server_starting      0                        galileo.amxx

And these missing cvars?

How to reproduce you issue exactly?
1) I open the server, use 'say nomenu', choose a map, and it nominates that map.

Before you have changed some thing on my code:
Code:
public nomination_handleMatchChoice( player_id, menu, item ) {     if( item < 0 )     {         return PLUGIN_CONTINUE;     }     // Get item info     new mapIndex, info[ 1 ];     new access, callback;         menu_item_getinfo( g_nominationMatchesMenu[ player_id ], item, access, info, 1, _, _, callback );     mapIndex = info[ 0 ];         map_nominate( player_id, mapIndex );         return PLUGIN_HANDLED; }
It gets wrong menu positions for 800 maps on pages as 60th.

This is what is working fine here:
Code:
public nomination_handleMatchChoice( player_id, menu, item ) {     if( item < 0 )     {         return PLUGIN_CONTINUE;     } #if defined DEBUG     // Get item info     new info[ 1 ];     new access, callback;         DEBUG_LOGGER( 4, "( nomination_handleMatchChoice ) item: %d - %s, player_id: %d, menu: %d", \             item, item, player_id, menu )         menu_item_getinfo( g_nominationMatchesMenu[ player_id ], item, access, info, 1, _, _, callback );         DEBUG_LOGGER( 4, "( nomination_handleMatchChoice ) info[ 0 ]: %d - %s, access: %d, \             g_nominationMatchesMenu[ player_id ]: %d", \             info[ 0 ], info[ 0 ], access, g_nominationMatchesMenu[ player_id ] ) #endif     map_nominate( player_id, item );         return PLUGIN_HANDLED; }

Try both these versions. The video and and current version I posted is using this last one.

YParushev 03-30-2016 22:28

Re: Galileo v2.3.4 (a feature rich map voting plugin) | Last Update: 27.03.2016
 
Try "nom cs or de" (for example) and make a selection.Is not displayed correctly.In this case both codes do not function well.

This code works, but it gives an error and sometimes can not nominate a map and report error logged.

Code:

public nomination_handleMatchChoice( player_id, menu, item )
{
    if( item < 0 )
    {
        return PLUGIN_CONTINUE;
    }
    // Get item info
    new mapIndex, info[ 1 ];
    new access, callback;
   
    menu_item_getinfo( g_nominationMatchesMenu[ player_id ], item, access, info, 1, _, _, callback );

    mapIndex = info[ 0 ];   
    map_nominate( player_id, mapIndex );
   
    return PLUGIN_HANDLED;
}



Error:
Code:

L 03/31/2016 - 05:44:54: Invalid cellvector handle provided (15:-40:267)
L 03/31/2016 - 05:44:54: [AMXX] Displaying debug trace (plugin "galileo.amxx")
L 03/31/2016 - 05:44:54: [AMXX] Run time error 10: native error (native "ArrayGetString")
L 03/31/2016 - 05:44:54: [AMXX]    [0] galileo.sma::map_nominate (line 2434)
L 03/31/2016 - 05:44:54: [AMXX]    [1] galileo.sma::nomination_handleMatchChoice (line 2315)

Other code works to "say nomenu", but for "say nom cs" (or any card) does not work.
I do not speak good English,Sorry.

addons_zz 03-31-2016 10:37

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

Originally Posted by YParushev (Post 2406958)
I do not speak good English,Sorry.

No need to be sorry, just do you best and we are good.

Quote:

Originally Posted by YParushev (Post 2406958)
Try "nom cs or de" (for example) and make a selection.Is not displayed correctly.In this case both codes do not function well.

This code works, but it gives an error and sometimes can not nominate a map and report error logged.

Code:

public nomination_handleMatchChoice( player_id, menu, item )
{
    if( item < 0 )
    {
        return PLUGIN_CONTINUE;
    }
    // Get item info
    new mapIndex, info[ 1 ];
    new access, callback;
   
    menu_item_getinfo( g_nominationMatchesMenu[ player_id ], item, access, info, 1, _, _, callback );

    mapIndex = info[ 0 ];   
    map_nominate( player_id, mapIndex );
   
    return PLUGIN_HANDLED;
}



Error:
Code:

L 03/31/2016 - 05:44:54: Invalid cellvector handle provided (15:-40:267)
L 03/31/2016 - 05:44:54: [AMXX] Displaying debug trace (plugin "galileo.amxx")
L 03/31/2016 - 05:44:54: [AMXX] Run time error 10: native error (native "ArrayGetString")
L 03/31/2016 - 05:44:54: [AMXX]    [0] galileo.sma::map_nominate (line 2434)
L 03/31/2016 - 05:44:54: [AMXX]    [1] galileo.sma::nomination_handleMatchChoice (line 2315)

Other code works to "say nomenu", but for "say nom cs" (or any card) does not work.

Ok, I got it, the problem is not that code, you changed. As you saw, it it bugged using the 'nomenu'. I need to get a way to find the right map index when using the 'nom some'.

Now I see what is wrong and I mostly know how to fix it. You helped me a lot to find what is wrong, thank you. I am going to fix it and release it until tomorrow.

addons_zz 03-31-2016 23:50

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

Originally Posted by YParushev (Post 2406958)
Try "nom cs or de" (for example) and make a selection.Is not displayed correctly. In this case both codes do not function well.
Other code works to "say nomenu", but for "say nom cs" (or any card) does not work.

I fixed that bug, It is available on the development three on github. This is a direct link to always to download it:
https://github.com/addonszz/Galileo/archive/develop.zip

But because it is the development version, the debugging is enabled. Go to around the 'line 39' and find:
Code:
#define DEBUG_LEVEL SomeNumber(s)
and change it to:
Code:
#define DEBUG_LEVEL 0

I am going to release a new version here when I implement some more features.

addons_zz 04-01-2016 01:25

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

2016-04-01 | v2.4
  1. Fixed the "recentmaps" function title menu to appear on the screen as 'nominate map'.
  2. Fixed the nomination menu does showing run time error 10 some times.
  3. Fixed the next map manager ignoring some map cycle maps.
  4. Fixed the 'nom partialMapName' menu choosing wrong maps.
  5. Added the player menus to be used with 'say_team' beyond 'say'.
  6. Added a first nomination's menu option to cancel all your nominations.
  7. When the server is (crash maybe) restarted 10 times on the same map, added to the handle
    server start feature, to stop the changing to that map and to use the its next map.
  8. Removed the 15 seconds delay on the server start feature.

YParushev 04-01-2016 07:38

Re: Galileo v2.4 (a feature rich map voting plugin) | Last Update: 01.04.2016
 
Congratulations.I do not find other bugs of the plugin, and I think if there is nothing to improve, may be approved.
Thank you ;)

chaves 04-01-2016 08:50

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

Originally Posted by addons_zz (Post 2406942)
Now the nomination menu is working fine on the version 2.3.5d

Here attached is a update to prevent you error from happening, it also fix the 'recentmaps' menu showing its title as 'Nominate'. When there is enough changes I I will release a new version on the first post and post it change log here.


Solved, thank you continue to use the plugin, I take a doubt, the vote option with players of minimum nullifies the possibility of appointing list of maps "gal_listmaps"?

chaves 04-01-2016 08:53

Re: Galileo v2.4 (a feature rich map voting plugin) | Last Update: 01.04.2016
 
I just enter the server without WMD, and co try to RTV says I can not use with administrators online, I only have on the server, it can be?

addons_zz 04-01-2016 10:12

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

Originally Posted by YParushev (Post 2407282)
Congratulations.I do not find other bugs of the plugin, and I think if there is nothing to improve, may be approved.
Thank you ;)

You are welcome.

Quote:

Originally Posted by chaves (Post 2407290)
Solved, thank you continue to use the plugin, I take a doubt, the vote option with players of minimum nullifies the possibility of appointing list of maps "gal_listmaps"?

The 'gal_listmaps' command will use/display the maps loaded by the cvar 'gal_nom_mapfile', independent/despite of the cvar 'gal_vote_minplayers'/'gal_vote_minplayers_mapfile'.

Quote:

Originally Posted by chaves (Post 2407291)
I just enter the server without WMD, and co try to RTV says I can not use with administrators online, I only have on the server, it can be?

What is 'WMD'? Is it 'Weapon of Mass Destruction'?

There is a cvar to forbid RTV when there are administrators online. Is it working for you?
Code:
// If an admin have the change map flag is online: // 0 - players can normally rock the vote. // 1 - RTV will not work and will print "Cannot rock the vote when an //     admin is online". gal_rtv_wait_admin 0

chaves 04-01-2016 10:23

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

Originally Posted by addons_zz (Post 2407310)
You are welcome.


The 'gal_listmaps' command will use/display the maps loaded by the cvar 'gal_nom_mapfile', independent/despite of the cvar 'gal_vote_minplayers'/'gal_vote_minplayers_mapfile'.


What is 'WMD'? Is it 'Weapon of Mass Destruction'?

There is a cvar to forbid RTV when there are administrators online. Is it working for you?
Code:
// If an admin have the change map flag is online: // 0 - players can normally rock the vote. // 1 - RTV will not work and will print "Cannot rock the vote when an //     admin is online". gal_rtv_wait_admin 0


I am using the well configuration:

// If an admin have the change map flag is online:
// 0 - players can normally rock the vote.
// 1 - RTV will not work and will print "Cannot rock the vote when an
// admin is online".
gal_rtv_wait_admin 1

But even without ADM ON, says I can not use "RTV" with administrators on line, you know?

WMD = ADM, sorry translator use

chaves 04-01-2016 10:26

Re: Galileo v2.4 (a feature rich map voting plugin) | Last Update: 01.04.2016
 
The 'gal_listmaps' command will use/display the maps loaded by the cvar 'gal_nom_mapfile', independent/despite of the cvar 'gal_vote_minplayers'/'gal_vote_minplayers_mapfile'.


could not only work with maps "minplayers mapcycle.txt" when the value determined in "gal_vote_minplayers"? would be great so really would force players to use the list without this when naming other maps off this list RTV follows naturally disabling the minimum.

addons_zz 04-01-2016 10:46

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

Originally Posted by chaves (Post 2407317)
I am using the well configuration:

// Enable or disable the colored chat.
// 0 - Disabled
// 1 - Enabled
gal_colored_chat_enabled 1

But even without ADM ON, says I can not use "RTV" with administrators on line, you know?

WMD = ADM, sorry translator use

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.

Quote:

Originally Posted by chaves (Post 2407319)
The 'gal_listmaps' command will use/display the maps loaded by the cvar 'gal_nom_mapfile', independent/despite of the cvar 'gal_vote_minplayers'/'gal_vote_minplayers_mapfile'.


could not only work with maps "minplayers mapcycle.txt" when the value determined in "gal_vote_minplayers"? would be great so really would force players to use the list without this when naming other maps off this list RTV follows naturally disabling the minimum.

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?

chaves 04-01-2016 12:25

Re: Galileo v2.4 (a feature rich map voting plugin) | Last Update: 01.04.2016
 
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?[/QUOTE]

accurate, serial 100% functional, validating the "gal_vote_minplayers" so really just giving the possibility to use the maps "gal_vote_minplayers_mapfile" avoiding maps out the minimum number stipulated list.
eg gal_vote_minplayers 15, when only 15 or less that we can only use this file name "gal_vote_minplayers_mapfile" understand?

addons_zz 04-01-2016 14:36

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

Originally Posted by chaves (Post 2407351)
accurate, serial 100% functional, validating the "gal_vote_minplayers" so really just giving the possibility to use the maps "gal_vote_minplayers_mapfile" avoiding maps out the minimum number stipulated list.
eg gal_vote_minplayers 15, when only 15 or less that we can only use this file name "gal_vote_minplayers_mapfile" understand?

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?


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

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