Missions are the heart of Arma 3 gameplay. This guide covers how to upload mission files and configure them in your server's mission rotation.
Step 1: Upload Mission Files
Mission files have the .pbo extension and must be placed in the /mpmissions folder on your server.
- Navigate to the Wabbanode Control Panel and click Files.
- Navigate to the
/mpmissionsfolder. - Upload your
.pbomission file(s).
Step 2: Configure Mission Rotation
- Click the Settings tab and select Arma 3 Server.cfg.

- Locate the
class Missionssection and add your missions to the configuration.
- Click Save and Start your server.
Mission Configuration
Single Mission
class Missions {
class Mission1 {
template = "MissionName.MapName";
difficulty = "regular";
};
};
Multiple Missions (Rotation)
class Missions {
class Mission1 {
template = "coop_mission.Altis";
difficulty = "regular";
};
class Mission2 {
template = "pvp_mission.Stratis";
difficulty = "veteran";
};
class Mission3 {
template = "training_mission.VR";
difficulty = "recruit";
};
};
Understanding Mission Names
The mission template follows this format: MissionName.MapName
| Part | Description |
|---|---|
MissionName | The filename of the .pbo (without extension) |
MapName | The terrain/map the mission runs on |
Common Map Names
| Map | Internal Name |
|---|---|
| Altis | Altis |
| Stratis | Stratis |
| Tanoa | Tanoa |
| Malden | Malden |
| Virtual Reality | VR |
| Livonia | Enoch |
Example
If your mission file is BMR_Insurgency_v1_44.Altis.pbo, your configuration would be:
class Missions {
class Mission1 {
template = "BMR_Insurgency_v1_44.Altis";
difficulty = "regular";
};
};
Difficulty Options
| Difficulty | Description |
|---|---|
recruit | Easiest - most assists enabled |
regular | Balanced gameplay |
veteran | Hardcore - minimal HUD |
custom | User-defined settings |
Tips
- Don't include the
.pboextension in the template name - Missions cycle automatically when one ends (if multiple defined)
- Test missions locally before adding to the server
- Some missions require specific mods to function
Your missions are now configured. Players can enjoy your selected missions with automatic rotation when multiple missions are defined.

