Create missions in ArmA 3
Create, upload and configure missions to have your very own game experience
How do I create a mission?
- in the main menu go to create game
- select a map and click on 'Editor - New'
- double-click on the figure in the upper left corner and add a unit to it
- give the mission a name and save it
- open your directory where your mission is located in Arma 3
- by default:
Users\USER\Documents\Arma 3 - Other Profiles\PROFILENAME\missions
- by default:
- create a text file with the name
description.ext
- add the following lines
respawn = "BASE"; // Marker needed with name respawn_west
respawnDelay = 1; // restart delay in seconds
enableDebugConsole = 2; // make debug console and thus bird's eye view available in game
joinUnassigned = 0; // Automatically join a free slot
- with the
Esc
key and a subsequent click onCamera
you can now switch to the bird's eye view
Done. Have fun!
How do I upload a mission?
-
create a mission or download one from the internet
-
depending on your server, upload it with a FTP client to your
mpmissions
folder -
go to your Arma folder and create a file named
server.cfg
-
add the following lines:
// MISSIONS CYCLE class Missions { class name of the first mission{ template = mission; difficulty = difficulty }; class name of second mission{ template = mission; difficulty = "difficulty" }; };
- for each additional mission put square brackets again
- under
template =
insert the correct name of your mission - maybe your mission file ends with
.pbo
, you dont have to consider this under template (for
mission.pbowrite only
mission`)
-
save your file.
-
done. Have fun!
How do I configure a mission?
The settings of a mission are configured when you create it. There you can set the various parameters, such as difficulty, name, map, etc.