Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Maniacode

From Trackmania Wiki
Revision as of 21:03, 19 August 2025 by BigBang1112 (talk | contribs) (Add Maniacode with hello world instruction)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Maniacode is a sequential logic format written in XML. It is most often executed by opening it in a Manialink Browser, but it is also possible to execute it with ManiaScript.

Reference

Standard structure of the file:

<?xml version='1.0' encoding='utf-8' ?>
<maniacode>
    <!-- instructions -->
</maniacode>

To disable the confirmation dialog, set noconfirmation="1":

<maniacode noconfirmation="1">

Instructions

Show message:

<show_message>
    <message>Hello World!</message>
</show_message>