Page 1 of 1

ERROR: Title Unknown?

Posted: 03 Jun 2018, 18:16
by savage24x
Tried to boot up my old TM2 Stadium server, but wouldn't show in the server browser. So I updated it, installed the latest pack in UserData/Packs, and set a new server login. Every time I go to run it, I get the error Title Unknown. How do I fix it?

Image

Dedicated_Cfg.txt

Code: Select all

<?xml version="1.0" encoding="utf-8" ?>

<dedicated>
	<authorization_levels>
		<level>
			<name>SuperAdmin</name>
			<password>*</password>
		</level>
		<level>
			<name>Admin</name>
			<password>*</password>
		</level>
		<level>
			<name>User</name>
			<password>*</password>
		</level>
	</authorization_levels>
	
 	<masterserver_account>
		<login>kenws2</login>
		<password>*</password>
		<validation_key>*</validation_key>
	</masterserver_account>
	
	<server_options>
		<name>savage's LOL trax</name>
		<comment>LOL tracks</comment>
		<hide_server>0</hide_server>					<!-- value is 0 (always shown), 1 (always hidden), 2 (hidden from nations) -->

		<max_players>32</max_players>
		<password></password>
		
		<max_spectators>32</max_spectators>
		<password_spectator></password_spectator>
	
		<keep_player_slots>False</keep_player_slots>			<!-- when a player changes to spectator, hould the server keep if player slots/scores etc.. or not. --> 	
		<ladder_mode>forced</ladder_mode>				<!-- value between 'inactive', 'forced' (or '0', '1') -->
		
		<enable_p2p_upload>True</enable_p2p_upload>
		<enable_p2p_download>True</enable_p2p_download>
		
		<callvote_timeout>60000</callvote_timeout>
		<callvote_ratio>0.5</callvote_ratio>				<!-- default ratio. value in [0..1], or -1 to forbid. -->
		<callvote_ratios>
			<voteratio command="Ban" ratio="-1"/>
			<!-- commands can be "Ban", "Kick", "RestartMap", "NextMap", "SetModeScriptSettingsAndCommands"... -->
		</callvote_ratios>

		<allow_map_download>True</allow_map_download>
		<autosave_replays>False</autosave_replays>
		<autosave_validation_replays>False</autosave_validation_replays>

		<referee_password></referee_password>
		<referee_validation_mode>0</referee_validation_mode>		<!-- value is 0 (only validate top3 players),  1 (validate all players) -->

		<use_changing_validation_seed>False</use_changing_validation_seed>

		<disable_horns>False</disable_horns>
		<clientinputs_maxlatency>0</clientinputs_maxlatency>		<!-- 0 mean automatic adjustement -->
	</server_options>
	
	<system_config>
		<connection_uploadrate>8000</connection_uploadrate>		<!-- Kbits per second -->
		<connection_downloadrate>8000</connection_downloadrate>		<!-- Kbits per second -->

		<allow_spectator_relays>False</allow_spectator_relays>

		<p2p_cache_size>600</p2p_cache_size>

		<force_ip_address></force_ip_address>
		<server_port>2351</server_port>
		<server_p2p_port>3451</server_p2p_port>
		<client_port>0</client_port>
		<bind_ip_address></bind_ip_address>
		<use_nat_upnp></use_nat_upnp>

		<gsp_name></gsp_name>						<!-- Game Server Provider name and info url -->
		<gsp_url></gsp_url>						<!-- If you're a server hoster, you can use this to advertise your services -->

		<xmlrpc_port>5001</xmlrpc_port>
		<xmlrpc_allowremote>False</xmlrpc_allowremote>			<!-- If you specify an ip adress here, it'll be the only accepted adress. this will improve security. -->

		<scriptcloud_source>nadeocloud</scriptcloud_source>		<!-- Specify the cloud storage mode for Titles that use it. Can be "localdebug" or "xmlrpc" or "nadeocloud" (default). "nadeocloud" will work only if the creator of the title subscribed to the cloud service. -->

		
		<blacklist_url></blacklist_url>
		<guestlist_filename></guestlist_filename>
		<blacklist_filename></blacklist_filename>
		
		<title>TMStadium@nadeo</title>		<!-- SMStorm, TMCanyon, ... -->

		<minimum_client_build></minimum_client_build>			<!-- Only accept updated client to a specific version. ex: 2011-10-06 -->

		<disable_coherence_checks>False</disable_coherence_checks>	<!-- disable internal checks to detect issues/cheats, and reject race times -->

		<disable_replay_recording>False</disable_replay_recording>	<!-- disable replay recording in memory during the game to lower memory usage. -->

		<use_proxy>False</use_proxy>
		<proxy_login></proxy_login>
		<proxy_password></proxy_password>
	</system_config>
</dedicated>

matchsettings

Code: Select all

<?xml version="1.0" encoding="utf-8" ?>
<playlist>
	<gameinfos>
		<game_mode>2</game_mode>
		<script_name>maplist.txt</script_name>
		<title>TMStadium@nadeo</title>
		<chat_time>10000</chat_time>
		<finishtimeout>1</finishtimeout>
		<allwarmupduration>0</allwarmupduration>
		<disablerespawn>0</disablerespawn>
		<forceshowallopponents>0</forceshowallopponents>
		<rounds_pointslimit>50</rounds_pointslimit>
		<rounds_usenewrules>0</rounds_usenewrules>
		<rounds_forcedlaps>0</rounds_forcedlaps>
		<rounds_pointslimitnewrules>5</rounds_pointslimitnewrules>
		<team_pointslimit>5</team_pointslimit>
		<team_maxpoints>6</team_maxpoints>
		<team_usenewrules>0</team_usenewrules>
		<team_pointslimitnewrules>5</team_pointslimitnewrules>
		<timeattack_limit>300000</timeattack_limit>
		<timeattack_synchstartperiod>0</timeattack_synchstartperiod>
		<laps_nblaps>5</laps_nblaps>
		<laps_timelimit>0</laps_timelimit>
		<cup_pointslimit>100</cup_pointslimit>
		<cup_roundsperchallenge>5</cup_roundsperchallenge>
		<cup_nbwinners>3</cup_nbwinners>
		<cup_warmupduration>2</cup_warmupduration>
	</gameinfos>

Server start bat

Code: Select all

ManiaPlanetServer.exe /title=TMStadium@nadeo /game_settings=MatchSettings/maplist.txt /dedicated_cfg=dedicated_cfg.txt 

Re: ERROR: Title Unknown?

Posted: 03 Jun 2018, 19:28
by hackie
Starting maniaplanet 2015 ? Omg , thats a oldie.

There where some big changes after that if I'm right.

Re: ERROR: Title Unknown?

Posted: 03 Jun 2018, 19:31
by sotn0r
Try it with the latest maniaplanet server posted here

viewtopic.php?f=261&t=43847

Re: ERROR: Title Unknown?

Posted: 03 Jun 2018, 19:50
by savage24x
hackie wrote: 03 Jun 2018, 19:28 Starting maniaplanet 2015 ? Omg , thats a oldie.

There where some big changes after that if I'm right.
Good catch, I downloaded the latest from maniaplanet, but not the forum.

So, my bat shortcut was pointing to the wrong folder... :roflol:

Re: ERROR: Title Unknown?

Posted: 03 Jun 2018, 20:42
by hackie
savage24x wrote: 03 Jun 2018, 19:50
hackie wrote: 03 Jun 2018, 19:28 Starting maniaplanet 2015 ? Omg , thats a oldie.

There where some big changes after that if I'm right.
Good catch, I downloaded the latest from maniaplanet, but not the forum.

So, my bat shortcut was pointing to the wrong folder... :roflol:
Shit happens :D , glad you found it :thumbsup: .
Goodluck , drive save :pil

Re: ERROR: Title Unknown?

Posted: 03 Jun 2018, 21:27
by savage24x
Don't want to start a whole new thread... I can't get my XAseco2 to scale properly. Has anyone ran into this with the latest maniaplanet server?

Image

Re: ERROR: Title Unknown?

Posted: 03 Jun 2018, 21:37
by undef.de
XAseco2 doesn't support ModeScripts, use UASECO instead: https://www.uaseco.org/

Re: ERROR: Title Unknown?

Posted: 03 Jun 2018, 21:40
by savage24x
undef.de wrote: 03 Jun 2018, 21:37 XAseco2 doesn't support ModeScripts, use UASECO instead: https://www.uaseco.org/
Ah, I've been out of the game for too long! Thank you!

Re: ERROR: Title Unknown?

Posted: 04 Jun 2018, 17:35
by oliverde8
There are multiple new alternatives to XAseco each with it's own flavor/

- UAseco which is a fork of XAseco to work with maniascript game modes and comes with undef's widget preinstalled
- eXpansion² which is still in beta, it tries to be as simple to use for admins as possible with configs done in-game.
- maniacontrol
- PyPlanet which isn't a php controller but a made in python.