[STADIUM] The server does not recognize the map

Talk about the online play and eSport / team

Moderator: English Moderator

clementlapizza
Posts: 23
Joined: 14 Nov 2018, 04:28
Location: Gaspé, Quebec, Canada
Contact:

[STADIUM] The server does not recognize the map

Post 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
Last edited by clementlapizza on 28 Mar 2019, 17:27, edited 1 time in total.
Je sais pas conduire sur TM
speedychris
Posts: 172
Joined: 29 Dec 2011, 20:47

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

Post 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
clementlapizza
Posts: 23
Joined: 14 Nov 2018, 04:28
Location: Gaspé, Quebec, Canada
Contact:

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

Post 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>
Last edited by clementlapizza on 28 Mar 2019, 17:26, edited 1 time in total.
Je sais pas conduire sur TM
speedychris
Posts: 172
Joined: 29 Dec 2011, 20:47

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

Post by speedychris »

What environment ist the Map? In your dedicated.cfg the <title> has to match the map environment.
clementlapizza
Posts: 23
Joined: 14 Nov 2018, 04:28
Location: Gaspé, Quebec, Canada
Contact:

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

Post 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
Je sais pas conduire sur TM
User avatar
Miss
Posts: 2151
Joined: 05 Jan 2016, 11:34
Location: The Netherlands
Contact:

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

Post by Miss »

Is the map validated & shadow-calculated?
3080 RTX, Ryzen 3700X, 32GB RAM, Windows 11
Forum moderator, opinions are my own. :thx:
Check out Image openplanet, the alternative ManiaPlanet & Turbo scripting platform! (Openplanet subforum)
I also stream and tweet.
clementlapizza
Posts: 23
Joined: 14 Nov 2018, 04:28
Location: Gaspé, Quebec, Canada
Contact:

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

Post 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
Je sais pas conduire sur TM
User avatar
undef.de
Posts: 2095
Joined: 06 Apr 2011, 21:57
Location: Germany, North Sea Coast
Contact:

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

Post 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.
Developer of UASECO, a controller with support of the Modescript Gamemodes for TM².
Visit the official website for more: UASECO.org


Developer of various plugins for XAseco/XAseco2 and MPAseco, visit my lab: www.undef.name

You like what I do? Then award a ManiaStar.
clementlapizza
Posts: 23
Joined: 14 Nov 2018, 04:28
Location: Gaspé, Quebec, Canada
Contact:

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

Post 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...
Je sais pas conduire sur TM
User avatar
undef.de
Posts: 2095
Joined: 06 Apr 2011, 21:57
Location: Germany, North Sea Coast
Contact:

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

Post 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
Developer of UASECO, a controller with support of the Modescript Gamemodes for TM².
Visit the official website for more: UASECO.org


Developer of various plugins for XAseco/XAseco2 and MPAseco, visit my lab: www.undef.name

You like what I do? Then award a ManiaStar.
Post Reply

Return to “Multiplayer”

Who is online

Users browsing this forum: No registered users and 1 guest