Language & Currency

Currency

ArmA 3: Your game, your server

from 9.84
AUD /month
from 11.72
BGN /month
from 35.00
BRL /month
from 9.64
CAD /month
from 5.54
CHF /month
from 46.32
CNY /month
from 145.46
CZK /month
from 44.78
DKK /month
from 5.99
EUR /month
from 5.10
GBP /month
from 53.54
HKD /month
from 45.14
HRK /month
from 2,164.37
HUF /month
from 123,381.42
IDR /month
from 20.59
ILS /month
from 657.23
INR /month
from 857.77
ISK /month
from 1,108.21
JPY /month
from 10,216.60
KRW /month
from 119.55
MXN /month
from 27.86
MYR /month
from 66.35
NOK /month
from 11.78
NZD /month
from 421.47
PHP /month
from 25.99
PLN /month
from 31.44
RON /month
from 702.03
RUB /month
from 66.11
SEK /month
from 8.83
SGD /month
from 229.03
THB /month
from 321.34
TRY /month
from 6.83
USD /month
from 112.46
ZAR /month
from 43.14
date /month

Upload your own mission for ArmA 3

Upload the mission

  1. Stop your server. Its status must be Server not running.

  2. Connect to the Gameserver FTP using your FTP program. You can find the login details in the FTP overview by clicking FTP.

  3. Open the following folder in the Gameserver FTP:

    /mpmissions/

  4. Upload the mission file in .pbo format directly to this folder. The file must not be placed in an additional subfolder.

Add the mission in Basic Mode

  1. If your server is in Basic Mode, click Map Cycle in the Game section on the left of the web interface. You will find an input field on the right.

  2. Enter the mission filename without the .pbo extension.

    Example: If the file is named MissionName.Altis.pbo, enter MissionName.Altis.

  3. Click + and move the mission to the top position in the right-hand section using drag and drop.

Add the mission in Advanced Mode

  1. If your server is in Advanced Mode, click CONFIG_server.cfg in the Configuration files section on the left of the web interface.

  2. In the text editor, scroll to the class Missions section.

  3. Add your mission there. As above, use the filename without the .pbo extension:

    class Missions {
        class Mission1 {
            template = "MissionName.Altis";
            difficulty = "Regular";
        };
    };
    

    difficulty can be set to Recruit, Regular, Veteran or Custom.

Add multiple missions

You can add several missions to CONFIG_server.cfg. Each mission needs its own class name:

class Missions {
    class Mission1 {
        template = "MissionName1.Altis";
        difficulty = "Regular";
    };
    class Mission2 {
        template = "MissionName2.Altis";
        difficulty = "Regular";
    };
    class Mission3 {
        template = "MissionName3.Altis";
        difficulty = "Regular";
    };
};

Save and start the server

Click Save and start your server.

Mission filename structure

A multiplayer mission normally has the following filename:

<MissionName>.<internal world name>.pbo

The mission name can be chosen freely. The world name is Arma 3’s internal map name and may differ from the displayed name. For example, Livonia is called Enoch internally:

MissionName.Enoch.pbo

When you export the mission as MPMissions in the Eden Editor, Arma 3 normally creates the PBO with the correct name automatically. Upload this file unchanged to /mpmissions/.

In Map Cycle or in the template entry, use the same name without .pbo:

MissionName.Enoch

The entry must match the filename exactly. The .pbo extension is omitted in Map Cycle and in template.