You can create a server login on the Trackmania player page. Log in, click on Dedicated Servers, enter your Player-Key, your desired server login, password, and specify the server location. Save, and you're done!
Your validation code is the last 3 digits of your player key. If you purchased the game via Steam, check your Trackmania game details under "Details" in your library to find your player key.
This is the username you created during the initial installation of the game. It is required to grant XASECO rights, without which you cannot administer your server in-game.
Your contact information is needed to provide access data for our panel and support services.
The dedicated.cfg
file is located under: /home/container/tmserver/GameData/Config
You can use the following commands to color your server name:
$000 to $fff
: Color$i
: Italic$s
: Shadow$w
: Wide character spacing$n
: Narrow character spacing$g
: Default color$z
: Default settings$$
: To display a dollar signExample: $i$f00cloud$33Fzor.de
will make the name red, blue, and italic.
If you forget your access data, contact support. We can reset your password, but you must provide a valid email address.
The XASECO folder is located at: /home/container/xaseco
Most plugins are outdated and may crash your server. However, you can find them here.
Navigate to /home/container/xaseco
. Place XML files in the root directory of XASECO unless otherwise specified. Then, open plugins.xml
and add your plugin like this: <plugin>tesplugin.php</plugin>
The map folder is located at: /home/container/tmserver/GameData/Tracks
Upload maps to the folder: /home/container/tmserver/GameData/Tracks
Go to the Backup section in your panel and click "Create Backup".
Check the console and XASECO logs at /home/container/xaseco -> aseco.log
and logfile.txt
. If the issue persists, contact support or reinstall the server via SETTINGS -> REINSTALL SERVER
, but make sure to back up your data first.
Log in to phpMyAdmin, select your database, click "Check All", then "Export". Leave the settings as default and click "Export" again.
In TrackMania, MatchSettings files are essential to define maps and settings for an online or local server. Follow these steps to create your MatchSettings file:
Play Online
.Create
at the bottom of the screen.My Tracks
to view all available maps.Save Settings
. Your file will be saved in Documents\TrackMania\Tracks\MatchSettings
.Find your saved MatchSettings file in the directory Documents\TrackMania\Tracks\MatchSettings
. The file will be an XML file containing your settings.
Documents\TrackMania\Tracks\Challenges
.
TrackMania\Tracks\MatchSettings
.If you run a TrackMania server, locate the existing MatchSettings file in the tmserver
directory.
Open the start.sh
file in the server's folder (usually in tmserver
) to find the path to the MatchSettings file:
/home/container/tmserver/GameData/Tracks/MatchSettings
To extend the MatchSettings file, add new maps by inserting new <challenge>
elements. Make sure the paths to the map files are correct.
<?xml version="1.0" encoding="utf-8"?>
<playlist>
<gameinfos>
<game_mode>1</game_mode>
<chat_time>10000</chat_time>
<finishtimeout>1</finishtimeout>
<rounds_pointslimit>50</rounds_pointslimit>
</gameinfos>
<filter>
<is_lan>1</is_lan>
<is_internet>1</is_internet>
</filter>
<challenge>
<file>Challenges/My Challenges/fs quovadis/Shark in the water.Gbx</file>
<ident>k2cw1_XQZeu0KM7waUtmqTMdAd7</ident>
</challenge>
</playlist>
<playlist>
section.<challenge>
elements with the new map file paths.<playlist>
<challenge>
<file>Challenges/My Challenges/fs quovadis/Invaders.Gbx</file>
<ident>i6jngndDPPEp92L1CSUDuIFY1l6</ident>
</challenge>
<challenge>
<file>Challenges/My Challenges/fs quovadis/Shark in the water.Gbx</file>
<ident>k2cw1_XQZeu0KM7waUtmqTMdAd7</ident>
</challenge>
</playlist>