Articles on: ARMA 3

ARMA3 Missions

To add ARMA3 missions to your Arma 3 server you will need to obtain the mission file for the mission you require. These are normally .PBO files.

The configuration for the mission cycle is listed below. Please read carefully before making changes. The missions cycle does come disabled with a example mission.


If you are installing a workshop mission file you must move it from its mod folder in the file manager to the mpmissions folder. It can be dragged and dropped via the file explorer or moved manually with FTP.

Upload the mission to the mpmissions folder via FTP or the File Manager upload feature.
Open the default.cfg config file and place the mission name, not including the .pbo in the mission area at the bottom.

If this is the first time doing it, you also have to remove the /* and */ lines as this comments it out/makes the code not run if they are there


If you run Exile on your server. This has it's own config file for missions. config.cfg

Example below for multiple missions.




class Missions
{
    class Mission01
    {
        template = MP_Marksmen_01.Altis;
        difficulty = "veteran";
        class Params {};
    };
    class Mission02
    {
        template = MP_End_Game_01.Altis;
        difficulty = "veteran";
        class Params {};
    };
    class Mission03
    {
        template = MP_End_Game_02.Altis;
        difficulty = "veteran";
        class Params {};
    };
    class Mission04
    {
        template = MP_End_Game_03.Altis;
        difficulty = "veteran";
        class Params {};
    };
};


Example below for a single mission.



class Missions
{
    class Mission01
    {
        template = MP_Marksmen_01.Altis;
        difficulty = "veteran";
        class Params {};
    };
};


For some extra information regarding Arma configuration setup with more information on mission cycles and usage of difficulty settings with the Arma Profile Arma 3 Setup

Updated on: 19/04/2022

Was this article helpful?

Share your feedback

Cancel

Thank you!