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

###Notes:

  • You can add custom music in your mission which are available in the "Music" module.
    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 on 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};
    };
};