MyBB Community Forums

Full Version: Servers board
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Okay that's done and fixed also it doesn't seem to like servers running on the same ip but different ports which is causing it to not read players properly and it also thinks my prophunt server has 240 slots
(2014-12-22, 01:46 PM)Faulty Wrote: [ -> ]Okay that's done and fixed also it doesn't seem to like servers running on the same ip but different ports which is causing it to not read players properly and it also thinks my prophunt server has 240 slots

hmmm it is game libery (gameqq2) foult, a try fix something, try latest version
bug whit too much slots wos fixed in lates version
gametracker have cache time 15, try up your cache time to 7 minutes

Version 3.0.5

Add mumble support
fix peeker for new option in acp
little fix in plugin codeĀ 

I need someone whit minecraft server to test somethink, pleas PM me
Some images from gametracker are not showing.
For example: http://image.www.gametracker.com/images/...Prison.jpg returns 404.
Correct link: http://image.www.gametracker.com/images/...prison.jpg

Links are case sensitive.

I was able to fix this bug by adding mb_strtolower function to gametracker address string.

serversboard.php -> Line 1830 ->

Before:
$data['gq_mapscreen'] = "<img src='http://image.www.gametracker.com/images/maps/160x120/bf4/".$data['gq_mapname'].".jpg' border='0' alt='".$data['gq_mapname']."'>";
After:
$data['gq_mapscreen'] = "<img src='http://image.www.gametracker.com/images/maps/160x120/bf4/".mb_strtolower($data['gq_mapname'], 'UTF-8').".jpg' border='0' alt='".$data['gq_mapname']."'>";

For now it working properly.
fixed in build 23, thanks for info

i think strtolower() is ok
I'm trying translate your plugin into russian language, but some changes from /languages/langname/admin/config_serversboard.lang.php are not showing. Entire first section (from $l['serversboard'] to $l['setting_cache_time_desc']) to be exact.

What could be the reason? Other sections are fine, serversboard.lang.php is ok too.
in lang english this variable is empty
look to polish lang pack
Ok, i'll try.

When server players bar overflows (like in BF4 with queue system), players bar become green (example: http://imgur.com/fK5HV5R). Maybe better do it red?
64/65?
must be 65/65

no hidden slots
Its 65/64. No hidden slots, its players in queue.
When it back to 63/64 players bar is red as intended.
try this
find
					switch($procentpasek)
					{
						case $procentpasek <= 40:
							$full_off_color = 'success';
						break;
						case $procentpasek <= 80:
							$full_off_color = 'warning';
						break;
						case $procentpasek<= 100:
							$full_off_color = 'danger';
						break;
						default:
							$full_off_color = 'success';
						break;
					}

replace

					switch($procentpasek)
					{
						case $procentpasek <= 40:
							$full_off_color = 'success';
						break;
						case $procentpasek <= 80:
							$full_off_color = 'warning';
						break;
						case $procentpasek<= 100:
							$full_off_color = 'danger';
						break;
						case $procentpasek > 100:
							$full_off_color = 'danger';
						break;
						default:
							$full_off_color = 'success';
						break;
					}

This fix will not be added to the plugin