Skip to content
Kex edited this page Jan 4, 2017 · 19 revisions

###Note:

  • You can add custom music in your mission which are available in the "Music" module since Achilles V.0.0.1.
    In order to get it working properly, you have to define the "name", "duration" and "musicClass" attributes in your custom music class.
  • More information about custom music in missions is available in the BIKI.

###Example:

class CfgMusic
{
    tracks[]={};
    class ArmA2_Reforger
    {
        // Display Name
        name = "ArmA2 Reforger";
        
        // Given in seconds; Is converted to mm:ss and shown in Zeus interface.
        duration = 155;
        
        // Music category (can be "Lead", "Action", "Stealth" or "Calm").
        musicClass = "Lead";
        
        sound[] = {"music\Ambient08_Reforger.ogg", db+10, 1.0};
    };
};