FAQ

How do I create a server login?

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!

What is my Validation Code?

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.

What is my Master Admin Login?

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.

Why do we need your Contact Information (E-Mail)?

Your contact information is needed to provide access data for our panel and support services.

Where can I find the dedicated.cfg of my server?

The dedicated.cfg file is located under: /home/container/tmserver/GameData/Config

How can I color the name of my server?

You can use the following commands to color your server name:

Example: $i$f00cloud$33Fzor.de will make the name red, blue, and italic.

What do I do if I have forgotten my access data for the panel?

If you forget your access data, contact support. We can reset your password, but you must provide a valid email address.

Where is the XASECO folder located?

The XASECO folder is located at: /home/container/xaseco

Where can I find XASECO plugins?

Most plugins are outdated and may crash your server. However, you can find them here.

How can I install XASECO plugins?

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>

Where do I find the map folder?

The map folder is located at: /home/container/tmserver/GameData/Tracks

How can I add maps?

Upload maps to the folder: /home/container/tmserver/GameData/Tracks

How can I create a backup?

Go to the Backup section in your panel and click "Create Backup".

What do I do if my server no longer starts?

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.

How to backup my database?

Log in to phpMyAdmin, select your database, click "Check All", then "Export". Leave the settings as default and click "Export" again.

1. Creating a MatchSettings File

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:

Step 1: Open TrackMania and Begin Creating MatchSettings
  1. Launch TrackMania: Start the game and go to Play Online.
  2. Create a Match: Select Create at the bottom of the screen.
  3. Click Launch: Start the server setup.
  4. Access Your Tracks: Choose My Tracks to view all available maps.
  5. Reload Maps: Click the reload icon (on the left) to refresh your map list.
  6. Select Maps: Use the multi-selection option to add multiple maps at once.
  7. Save Your MatchSettings: After selecting maps, click Save Settings. Your file will be saved in Documents\TrackMania\Tracks\MatchSettings.
Step 2: Locate the Saved MatchSettings File

Find your saved MatchSettings file in the directory Documents\TrackMania\Tracks\MatchSettings. The file will be an XML file containing your settings.

Step 3: Add Maps Manually
If you want to add more maps manually, download them from TrackMania Exchange (TMX) or use your own. Place all maps in: Documents\TrackMania\Tracks\Challenges.
Step 4: Upload MatchSettings and Maps to Your Server
  1. Upload MatchSettings: Transfer the MatchSettings file to the server's folder: TrackMania\Tracks\MatchSettings.
  2. Upload Maps: Ensure maps are uploaded to the same directory path as your local machine.

2. Locating and Extending an Existing MatchSettings File

If you run a TrackMania server, locate the existing MatchSettings file in the tmserver directory.

Step 1: Locate the MatchSettings File

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

Step 2: Extend the MatchSettings

To extend the MatchSettings file, add new maps by inserting new <challenge> elements. Make sure the paths to the map files are correct.

Example of an Existing MatchSettings File:
<?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>
Steps to Extend an Existing MatchSettings File:
  1. Open the existing MatchSettings XML file.
  2. Scroll to the bottom of the <playlist> section.
  3. Add new <challenge> elements with the new map file paths.
  4. Ensure paths match the server's directory structure.
  5. Save the file and restart the server.
Example of an Extended MatchSettings File:
<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>