Page 3 of 3

Re: ManiaPlanet Server 2014-10-23

Posted: 28 Oct 2014, 13:53
by w1lla
Today i tested it in TrackMania aswell as ShootMania.

Used in TrackMania the command /players as it should update the players windows if a player changes. No response whatsoever. Same goes for ShootMania.

However it might be a problem in executing of MultiCalls in Application.php as it did fix my problem eventually in one plugin but broke it when achieving it in other plugins ^^.

Re: ManiaPlanet Server 2014-10-23

Posted: 04 Nov 2014, 23:36
by undef.de
Just want to give a note to this topic about to run a 90k ladder server with Modescript Rounds.Script.txt, which doesn't work: http://forum.maniaplanet.com/viewtopic. ... 61&t=29671

Re: ManiaPlanet Server 2014-10-23

Posted: 04 Nov 2014, 23:58
by fng_thatoneguy
I thought I'd reported this, but I didn't...

One of my two ShootMania servers will crash within 24 hours of launching. I'm running a Hunger Games title pack server and a ShootMania Storm server with our custom TeamFNG_Royal script. At first the Royal server would die, but now it seems the Hunger Games one takes the dump for the last several days.

I'm running on Win 7 Pro -- so is this crashing issue both on Windows and Linux?

Re: ManiaPlanet Server 2014-10-23

Posted: 15 Nov 2014, 09:50
by oliverde8
Hi, I am still having issues with custom round points and script mode.

I do this, and nothing happens. What do I do wrong :D

Code: Select all

				$points = $intPoints;
				foreach ($points as &$num) {
					settype($num, 'string');
				}
				$this->connection->triggerModeScriptEventArray('Rounds_SetPointsRepartition', $points);

Re: ManiaPlanet Server 2014-10-23

Posted: 19 Nov 2014, 16:51
by Eole
It seems correct to me.

I tried to run the "Rounds_SetPointsRepartition" method on my debugging controller and it worked. I pushed an update on the Test branch of GitHub a few weeks ago that fixed a bug on this method. Before this fix the method was ignored if it was called when a round wasn't running. Could you download the latest version of the dedicated server (it was released today) and try if the bug persists?

However while testing I found another small bug. If the array sent to the server only contains 1 item, it will be ignored. Eg : ["10", "9", "3", "1"] will change the points but ["5"] won't work.
You can get the fix for this bug on GitHub.

Re: ManiaPlanet Server 2014-10-23

Posted: 19 Nov 2014, 19:24
by undef.de
Eole wrote:I tried to run the "Rounds_SetPointsRepartition" method on my debugging controller and it worked. I pushed an update on the Test branch of GitHub a few weeks ago that fixed a bug on this method.
Works for me since that update without any problems.
Eole wrote: You can get the fix for this bug on GitHub.
I think you missed to change the version to "2014-11-19"?!

Code: Select all

#Const	RoundsBaseVersion		"2014-10-15"

Re: ManiaPlanet Server 2014-10-23

Posted: 20 Nov 2014, 10:47
by Eole
Thanks, I've updated the version.