Raised This Month: $51 Target: $400
 12% 

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 01-10-2017 , 06:02   Re: Galileo v4.2.0-466 (a feature rich map voting plugin) | Last Update: 2017-01-06
Reply With Quote #461

It depends on the settings you are planning to set. For most settings it should be safe.
To be more safe, just wait a few days (may be today) until I release the next version.
__________________
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; 01-10-2017 at 06:12.
addons_zz is offline
blood2k
Senior Member
Join Date: Mar 2014
Old 01-10-2017 , 09:25   Re: Galileo v4.2.0-466 (a feature rich map voting plugin) | Last Update: 2017-01-06
Reply With Quote #462

Looks like a lot of options.. I honestly just want something that chooses 3 maps at the end of the map to vote for.. with nominations and rtv.


The extra stuff.. Idek if I'll be using

However, I'm more worried about bugs that cause lag or any issues, so If you believe I should wait I'll hold off.


EDIT: Is there reason it would crash my server? Like if I compiled on a newer dev build than my server? Not much new.. instead of the d-403 it's 5073 or something alongat those lines..

other than that I placed all files in proper places.. server just crashes, logs say nothing? O_O

Last edited by blood2k; 01-10-2017 at 17:03.
blood2k is offline
badbojus
New Member
Join Date: Jan 2017
Location: Lithuania and Norway
Old 01-11-2017 , 17:35   Re: Galileo v4.2.0-466 (a feature rich map voting plugin) | Last Update: 2017-01-06
Reply With Quote #463

Wow! looks really amazing plugin, such easy to use but with so much features, i am replacing default amx chooser right now, thank you for making our servers better and keep this up!
badbojus is offline
Send a message via Skype™ to badbojus
addons_zz
Veteran Member
Join Date: Aug 2015
Location: Dreams, zz
Old 01-11-2017 , 18:36   Re: Galileo v4.2.0-466 (a feature rich map voting plugin) | Last Update: 2017-01-06
Reply With Quote #464

Quote:
Originally Posted by blood2k View Post
EDIT: Is there reason it would crash my server? Like if I compiled on a newer dev build than my server? Not much new.. instead of the d-403 it's 5073 or something alongat those lines..

other than that I placed all files in proper places.. server just crashes, logs say nothing? O_O
Hey, I did not see you edit until now. There is no more reason to it crash your server.
But if it is crashing is very easy to know why.

Can you enabled the debug mode as said on the support section?
Anyways I attached here the latest dev build with the debug enabled
Just download the `galileo.amxx` file, install it on your server and open your server.
After it, send the log file created on `addons/amxmodx/logs/_galileo.log`.

Quote:
Originally Posted by badbojus View Post
Wow! looks really amazing plugin, such easy to use but with so much features, i am replacing default amx chooser right now, thank you for making our servers better and keep this up!
I am glad you like it
Attached Files
File Type: sma Get Plugin or Get Source (galileo.sma - 432 views - 612.5 KB)
__________________
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; 01-11-2017 at 19:28.
addons_zz is offline
addons_zz
Veteran Member
Join Date: Aug 2015
Location: Dreams, zz
Old 01-12-2017 , 08:30   Re: Galileo v4.2.0-466 (a feature rich map voting plugin) | Last Update: 2017-01-06
Reply With Quote #465

Quote:
Originally Posted by Beyond Reality View Post
[B]OK this edit work ok but after this edit now come 2 more bugs ...

First is ... if use "rtv" in chat, vote started and if no one voted in chat show "No one voted. The current map will be extended for 10 minutes." and server immediately changes to the same map ...
This is working correctly on my server. Try this development version attached here with the debug enabled and see if it is working on your server. You will need also to install the new lang file.
If it still not working, send me de `_galileo.log` file created.
Attached Files
File Type: sma Get Plugin or Get Source (galileo.sma - 413 views - 614.9 KB)
File Type: txt galileo.txt (84.0 KB, 54 views)
__________________
Plugin: Sublime Text - ITE , Galileo
Multi-Mod: Manager / Plugin / Server

Support me on Patreon, Ko-fi, Liberapay or Open Collective
addons_zz is offline
gravi123
Member
Join Date: Feb 2016
Old 01-12-2017 , 19:14   Re: Galileo v4.2.0-466 (a feature rich map voting plugin) | Last Update: 2017-01-06
Reply With Quote #466

How exactly does this feature work?
Quote:
Added the ability to show map information after the map name on the voting menu. Issue#18
I tried to set vote.txt entry like following:

Quote:
bkz_goldbhop bhop
bkz_goldbhop (bhop)
bkz_goldbhop [bhop]
But it all resulted in

Quote:
bkz_goldbhop
gravi123 is offline
addons_zz
Veteran Member
Join Date: Aug 2015
Location: Dreams, zz
Old 01-12-2017 , 20:37   Re: Galileo v4.2.0-466 (a feature rich map voting plugin) | Last Update: 2017-01-06
Reply With Quote #467

It was not working. I forgot to show the info on the voting menu. It will be fixed on the next version.
Code:
6580:        copiedChars += formatex( voteStatus[ copiedChars ], charsmax( voteStatus ) - copiedChars,
6581:               "^n%s%i.%s \
6582:                %s%s",
6583:                COLOR_RED, choiceIndex + 1, COLOR_WHITE,
6584:                g_votingMapNames[ choiceIndex ], mapVotingCount );
-->
Code:
galileo.sma
6580:         copiedChars += formatex( voteStatus[ copiedChars ], charsmax( voteStatus ) - copiedChars,
6581:                "^n%s%i.%s \
6582:                 %s %s%s",
6583:                 COLOR_RED, choiceIndex + 1, COLOR_WHITE,
6584:                 g_votingMapNames[ choiceIndex ], g_votingMapInfos[ choiceIndex ], mapVotingCount );
Just note, it will show the info from the:
  1. cvar `gal_vote_mapfile`, if the map was automatically added.
  2. cva `gal_nom_mapfile`, if the map is a nomination.
__________________
Plugin: Sublime Text - ITE , Galileo
Multi-Mod: Manager / Plugin / Server

Support me on Patreon, Ko-fi, Liberapay or Open Collective
addons_zz is offline
Beyond Reality
Junior Member
Join Date: Jan 2010
Location: Bulgaria,Varna
Old 01-13-2017 , 20:20   Re: Galileo v4.2.0-466 (a feature rich map voting plugin) | Last Update: 2017-01-06
Reply With Quote #468

Quote:
Originally Posted by addons_zz View Post
This is working correctly on my server. Try this development version attached here with the debug enabled and see if it is working on your server. You will need also to install the new lang file.
If it still not working, send me de `_galileo.log` file created.
Ok now work correctly . In this version you have inserted timeleft plug ? i need stop my timeleft.amxx ?
__________________

Last edited by Beyond Reality; 01-13-2017 at 20:22.
Beyond Reality is offline
Send a message via Skype™ to Beyond Reality
addons_zz
Veteran Member
Join Date: Aug 2015
Location: Dreams, zz
Old 01-13-2017 , 20:52   Re: Galileo v4.2.0-466 (a feature rich map voting plugin) | Last Update: 2017-01-06
Reply With Quote #469

Quote:
Originally Posted by Beyond Reality View Post
Ok now work correctly.


Quote:
Originally Posted by Beyond Reality View Post
In this version you have inserted timeleft plug ? i need stop my timeleft.amxx?
[/B]
Yes.
__________________
Plugin: Sublime Text - ITE , Galileo
Multi-Mod: Manager / Plugin / Server

Support me on Patreon, Ko-fi, Liberapay or Open Collective
addons_zz is offline
ish12321
Veteran Member
Join Date: May 2016
Old 01-14-2017 , 09:53   Re: Galileo v4.2.0-466 (a feature rich map voting plugin) | Last Update: 2017-01-06
Reply With Quote #470

what about add roundsleft
__________________
['O|s|G'] | Death Wins a.k.a Ish Chhabra was here
ish12321 is offline
Reply



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 06:31.


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