You can upload missions to the server in several ways
- Using FileManager
- Using FTP/SFTP
- By installing a modification in the Workshop Browser
You always need to have the resulting mission file in the "mpmissions" folder
To run a mission, click on "Configuration Files/Configuration Files" and then on "Text Editor" for the file "A3Master\server.cfg"
At the bottom of the config you will find the following, in the template you always fill in the file name of the mission you want to run.
class Missions
{
class Mission1
{
template="BMR_Insurgency_v1_44.Altis";
difficulty="regular";
};
};
In case you want to run multiple missions in a rotation, the result looks like this
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 {};
};
};
