Arma 3 /// Uploading and starting missions Print

  • arma 3 missions, arma 3 mise, arma 3 rotace
  • 0

You can upload missions to the server in several ways:

  • using File Manager,
  • using FTP/SFTP,
  • or by installing a modification through Workshop Browser.

The resulting mission file must always be stored in the mpmissions folder.

To start a mission, open Configuration Files and click Text Editor for A3Master\server.cfg.

At the bottom of the configuration file, specify the filename of the mission you want to run:

class Missions
{
    class Mission1
    {
        template="BMR_Insurgency_v1_44.Altis";
        difficulty="regular";
    };
};

To rotate multiple missions, use a configuration such as:

class Missions
{
    class TestMission01
    {
        template = MP_Marksmen_01.Altis;
        difficulty = "veteran";
        class Params {};
    };
    class TestMission02
    {
        template = MP_End_Game_01.Altis;
        difficulty = "veteran";
        class Params {};
    };
    class TestMission03
    {
        template = MP_End_Game_02.Altis;
        difficulty = "veteran";
        class Params {};
    };
    class TestMission04
    {
        template = MP_End_Game_03.Altis;
        difficulty = "veteran";
        class Params {};
    };
};

Was this answer helpful?

« Back