Page 1 of 3

[STADIUM] The server does not recognize the map

Posted: 26 Mar 2019, 23:45
by clementlapizza
Hello,
My problem is that when I start my server, it stops because it can not find a map.

The map was created with the esl_comp@lt_forever as TitlePack and I also put on pack in the server configuration.

Here are my last log :

Code: Select all

[2019/03/26 23:23:03] Starting ManiaPlanet Date=2019-02-27_22_00 Svn=90237 GameVersion=3.3.0...
[2019/03/26 23:23:03] Configuration file : dedicated_cfg.txt
[2019/03/26 23:23:03] Loading system configuration...
[2019/03/26 23:23:03] ...system configuration loaded
[2019/03/26 23:23:03] Loading cache...
[2019/03/26 23:23:03] ...OK
[2019/03/26 23:23:03] Loading dedicated server configuration...
[2019/03/26 23:23:03] ...Dedicated server configuration loaded
[2019/03/26 23:23:03] Connecting to master server...
[2019/03/26 23:23:03] ...OK
[2019/03/26 23:23:04] Identifying on master server...
[2019/03/26 23:23:04] ...OK
[2019/03/26 23:23:06] Listening for xml-rpc commands on port 5010.
[2019/03/26 23:23:06] Match settings file : MatchSettings\MatchSetting_djclement50_2019_03_26_18_18.txt
[2019/03/26 23:23:06] Loading match settings...
[2019/03/26 23:23:06] ...Match settings loaded
[2019/03/26 23:23:06] Autostart server on internet
[2019/03/26 23:23:06] URL: maniaplanet://#join=desposerv@esl_comp@lt_forever
[2019/03/26 23:23:06] Starting server...
[2019/03/26 23:23:06] ...ERROR: No maps in the playlist match the server settings.
[2019/03/26 23:23:06] Disconnection of desposerv(127.0.0.1:2360)
[2019/03/26 23:23:06] ...Server stopped
[2019/03/26 23:23:06] Server not running, exiting.
[2019/03/26 23:23:07] Exiting...
I thank you for your future answer

Cordially

Re: [STADIUM] The server does not recognize the map

Posted: 27 Mar 2019, 11:17
by speedychris
"ERROR: No maps in the playlist match the server Settings" -> so we need:
- Parameters of starting Server
- MatchSetting_djclement50_2019_03_26_18_18.txt

Re: [STADIUM] The server does not recognize the map

Posted: 27 Mar 2019, 14:30
by clementlapizza
start :

Code: Select all

./ManiaPlanetServer /nodaemon /dedicated_cfg=dedicated_cfg.txt /game_settings=MatchSettings/MatchSetting_djclement50_2019_03_26_18_18.txt
MatchSetting :

Code: Select all

<?xml version="1.0" encoding="utf-8" ?>
<playlist>
	<gameinfos>
		<script_name>Modes/TrackMania/TimeAttack</script_name>
		<comment></comment>
	</gameinfos>

	<filter>
		<random_map_order>0</random_map_order>
	</filter>

	<startindex>0</startindex>
	<map>
		<file>My Maps\test.Map.Gbx</file>
	</map>
</playlist>

Re: [STADIUM] The server does not recognize the map

Posted: 27 Mar 2019, 15:57
by speedychris
What environment ist the Map? In your dedicated.cfg the <title> has to match the map environment.

Re: [STADIUM] The server does not recognize the map

Posted: 27 Mar 2019, 17:04
by clementlapizza
As I said above, I took the esl_comp@lt_forever as TitlePack and put it in the <title> area of the dedicated.cfg

Re: [STADIUM] The server does not recognize the map

Posted: 27 Mar 2019, 17:08
by Miss
Is the map validated & shadow-calculated?

Re: [STADIUM] The server does not recognize the map

Posted: 27 Mar 2019, 17:11
by clementlapizza
Yes the map has been validated (I even made another map believed that the bug came from the previous map), I even made the calculation of the shadows and it makes me that bug on the titlepack ESL because on my main server which is under TMStadium@nadeo, it works

Re: [STADIUM] The server does not recognize the map

Posted: 28 Mar 2019, 10:42
by undef.de
clementlapizza wrote: 27 Mar 2019, 14:30 MatchSetting :

Code: Select all

<?xml version="1.0" encoding="utf-8" ?>
<playlist>
	<gameinfos>
		<script_name>Modes/TrackMania/TimeAttack</script_name>
	</gameinfos>
</playlist>
The <script_name> should be

Code: Select all

<?xml version="1.0" encoding="utf-8" ?>
<playlist>
	<gameinfos>
		<gamemode>0</gamemode>
		<script_name>TimeAttack.Script.txt</script_name>
	</gameinfos>
</playlist>
and <gamemode> has to be there (if not already)... but maybe unrelated to your problem.

Re: [STADIUM] The server does not recognize the map

Posted: 28 Mar 2019, 17:24
by clementlapizza
Hi, so I followed what you said, change the matchsettings:

Code: Select all

<?xml version="1.0" encoding="utf-8" ?>
<playlist>
	<gameinfos>
		<gamemode>0</gamemode>
		<script_name>TimeAttack.Script.txt</script_name>
		<comment></comment>
	</gameinfos>

	<filter>
		<random_map_order>0</random_map_order>
	</filter>

	<startindex>0</startindex>
	<map>
		<file>My Maps\test.Map.Gbx</file>
	</map>
</playlist>

But I still have this error:

Code: Select all

[2019/03/28 17:21:14] Starting ManiaPlanet Date=2019-02-27_22_00 Svn=90237 GameVersion=3.3.0...
[2019/03/28 17:21:14] Configuration file : dedicated_cfg.txt
[2019/03/28 17:21:14] Loading system configuration...
[2019/03/28 17:21:14] ...system configuration loaded
[2019/03/28 17:21:14] Loading cache...
[2019/03/28 17:21:14] ...OK
[2019/03/28 17:21:14] Loading dedicated server configuration...
[2019/03/28 17:21:14] ...Dedicated server configuration loaded
[2019/03/28 17:21:14] Connecting to master server...
[2019/03/28 17:21:15] ...OK
[2019/03/28 17:21:15] Identifying on master server...
[2019/03/28 17:21:16] ...OK
[2019/03/28 17:21:17] Listening for xml-rpc commands on port ****.
[2019/03/28 17:21:17] Match settings file : MatchSettings\MatchSetting_djclement50_2019_03_26_18_18.txt
[2019/03/28 17:21:17] Loading match settings...
[2019/03/28 17:21:17] ...Match settings loaded
[2019/03/28 17:21:17] Autostart server on internet
[2019/03/28 17:21:17] URL: maniaplanet://#join=desposerv@esl_comp@lt_forever
[2019/03/28 17:21:17] Starting server...
[2019/03/28 17:21:17] ...ERROR: No maps in the playlist match the server settings.
[2019/03/28 17:21:17] Disconnection of desposerv(**.**.***.*:****)
[2019/03/28 17:21:17] ...Server stopped
[2019/03/28 17:21:17] Server not running, exiting.
[2019/03/28 17:21:18] Exiting...

Re: [STADIUM] The server does not recognize the map

Posted: 28 Mar 2019, 17:48
by undef.de
clementlapizza wrote: 27 Mar 2019, 14:30 start :

Code: Select all

./ManiaPlanetServer /nodaemon /dedicated_cfg=dedicated_cfg.txt /game_settings=MatchSettings/MatchSetting_djclement50_2019_03_26_18_18.txt
Hmm... my line looks like this (took your config), dunno if /title=TMStadium@nadeo is required:

Code: Select all

./ManiaPlanetServer /nodaemon /title=TMStadium@nadeo /game_settings=MatchSettings/MatchSetting_djclement50_2019_03_26_18_18.txt /dedicated_cfg=dedicated_cfg=dedicated_cfg.txt