[TOC]
A ManiaCode is a XML file. You must write the content in the following markers:
<?xml version='1.0' encoding='utf-8' ?>
<maniacode>
The code that you want
</maniacode>
If we use the line below, there will be no message at the end of the ManiaCode (useful for redirections)
<maniacode noconfirmation="1">
<show_message>
<message>Your message</message>
</show_message>
<install_map>
<name>Name of the map</name>
<url>direct url of the map.Map.Gbx</url>
</install_map>
<play_map>
<name>Name of the map</name>
<url>direct url of the map.Map.Gbx </url>
</play_map>
<install_replay>
<name>Name of the replay</name>
<url>direct url of the replay.Replay.Gbx</url>
</install_replay>
<view_replay>
<name>Name of the replay</name>
<url>direct url of the replay.Replay.Gbx </url>
</view_replay>
<play_replay>
<name>Name of the replay</name>
<url>direct url of the replay.Replay.Gbx </url>
</play_replay>
<install_skin>
<name>Name of the skin</name>
<file>Skins/Vehicles/CommonCar/Name of the skin.zip</file>
<url>direct url of the skin</url>
</install_skin>
<get_skin>
<name>Name of the skin</name>
<file>Skins/Vehicles/CarCommon/Name of the skin.zip</file>
<url>direct url of the skin</url>
</get_skin>
<add_buddy>
<login>login of the player</login>
</add_buddy>
<goto>
<link>address of the manialink</link>
</goto>
<join_server>
<ip>ip of the server:port of the server</ip>
</join_server>
<join_server>
<login>login of the server</login>
</join_server>
<add_favourite>
<ip>ip of the server:port of the server</ip>
</add_favourite>
<add_favourite>
<login>login of the server</login>
</add_favourite>
<install_script>
<name>NameOfTheScript</name>
<file>Scripts/EditorPlugins/Trackmania/MyScript.Script.txt</file>
<url>http://my.website.com/MyScript.Script.txt</url>
</install_script>
<install_pack>
<name>Name of the Title Pack</name>
<file>Packs/MyPack.Title.Pack.Gbx</file>
<url>http://my.website.com/MyPack.Title.Pack.Gbx</url>
</install_pack>
<?xml version='1.0' encoding='utf-8' ?>
<maniacode noconfirmation="1">
<show_message>
<message>Maniacode tutorial</message>
</show_message>
<install_map>
<name>Map</name>
<url>url of the map</url>
</install_map>
<goto>
<link>redirection to another page of my manialink</link>
</goto>
</maniacode>