Creating an Addon – Arma 3
mNo edit summary |
mNo edit summary |
||
(32 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
{{TOC|side | {{TOC|side}} | ||
This page explains the steps required to create an addon ([[PBO File Format|PBO]] file). | This page explains the steps required to create an addon ([[PBO File Format|PBO]] file). | ||
Line 5: | Line 5: | ||
== Prerequisites == | == Prerequisites == | ||
* An addon making tool | * An addon making tool such as: | ||
* {{Link|:Category:Arma 3: Official Tools|Arma 3 Tools}} | |||
* {{Link|https://mikero.bytex.digital/|Mikero's Tools}} | |||
* {{Link|https://hemtt.dev/|HEMTT}} ({{Link|https://github.com/BrettMayson/HEMTT|GitHub}}) | |||
* A text editor, such as Notepad++ or Visual Studio Code. | * A text editor, such as Notepad++ or Visual Studio Code. | ||
Line 16: | Line 19: | ||
In order to make this addon fully functional, at least two additional steps are required, which are explained in further detail in the subsequent sections: | In order to make this addon fully functional, at least two additional steps are required, which are explained in further detail in the subsequent sections: | ||
* A file named | * A file named {{Link|#Config.cpp|config.cpp}} should be created in the root of the Addon Folder for the game to be able to recognize the addon contents. | ||
* Paths to all files in the addon, such as script paths, model paths, etc. should be adjusted with respect to the {{Link|#Addon Prefix}}. | |||
== Addon Prefix == | == Addon Prefix == | ||
In simple terms, Addon Prefix is a virtual (in-game) path to the root of an addon. This virtual path should be unique to prevent collision with other | In simple terms, Addon Prefix is a virtual (in-game) path to the root folder of an addon. The game uses the addon prefix to find the files in the addon. This virtual path should preferably be unique to prevent collision with other addon files. | ||
The addon prefix is added to the [[PBO_File_Format#Arma_PBO|PBO properties]] by the packing tool. | The addon prefix is added to the [[PBO_File_Format#Arma_PBO|PBO properties]] by the packing tool. | ||
Line 29: | Line 32: | ||
It is also possible to use a directory-like | It is also possible to use a directory-like prefix (where each pseudo-directory is separated by {{hl|\}}). This prefix format is typically used by mods that contain several addons: | ||
{{Color|purple|Mod_Name}}\{{Color| | {{Color|purple|Mod_Name}}\{{Color|purple|Addon_Name}}\{{Color|purple|Category}}\... | ||
For example: | For example: | ||
{{Color|purple|My_Faction_Mod}}\{{Color| | {{Color|purple|My_Faction_Mod}}\{{Color|purple|Faction_Name}}\{{Color|purple|Vehicles}} | ||
It is also possible to use the same Addon Prefix in multiple addons (for example, to split an addon into smaller ones) | |||
However, note that their class names in [[#Config.cpp|CfgPatches]] must be different. | |||
Line 45: | Line 51: | ||
|__{{Color|teal|car.p3d}} {{cc|A p3d (3D model) file}} | |__{{Color|teal|car.p3d}} {{cc|A p3d (3D model) file}} | ||
In '''config.cpp''', the model path should be: | Let's assume we've set the addon prefix to "My_Awesome_Car_Mod". In '''config.cpp''', the model path should be: | ||
model = "{{Color|purple| | model = "{{Color|purple|My_Awesome_Car_Mod}}\{{Color|darkorange|models}}\{{Color|teal|car.p3d}}"; | ||
In other words, instead of using {{hl|Addon_Folder}}, every path should now start from the Addon Prefix.<br> | |||
{{Feature | | |||
{{Feature|important|The addon prefix can only contain '''English letters''', '''numbers''', '''underscore ({{hl|_}})''' and backslash ({{hl|\}}). Note that '''spaces are not allowed'''!}} | |||
=== Setting the Addon prefix === | === Setting the Addon prefix === | ||
There are several ways to set the addon prefix, depending on the packing tool used. The instructions for two commonly used tools, namely | There are several ways to set the addon prefix, depending on the packing tool used. The instructions for two commonly used tools, namely {{Link|Addon Builder}}, Mikero's Tools, and HEMTT, are explained. | ||
==== Using Addon Builder ==== | ==== Using Addon Builder ==== | ||
To set the addon prefix using | To set the addon prefix using {{Link|Addon Builder}}, simply navigate to "Options" and modify the "Addon prefix" edit box. | ||
==== Using Mikero's pboProject ==== | ==== Using Mikero's pboProject ==== | ||
To set the addon prefix using Mikero's pboProject, create a text file called {{ | To set the addon prefix using Mikero's pboProject, create a text file called {{hl|$PBOPREFIX$.txt}} in the root of the addon folder, and type the addon prefix in the file. | ||
==== Using HEMTT ==== | |||
To set the addon prefix using HEMTT, create a text file called {{hl|$PBOPREFIX$}} in the root of the addon folder, and type the addon prefix in the file. | |||
For more information on using HEMTT, see the {{Link|https://hemtt.dev/|"HEMTT Book"}}. | |||
== Config.cpp == | == Config.cpp == | ||
When the game loads an addon, it looks for a file called '''config.cpp''' to determine how to process the addon contents. Without | When the game loads an addon, it looks for a file called '''config.cpp''' to determine how to process the addon contents. Without this file, the addon will be ignored by the game. | ||
In other words, '''config.cpp''' is the hub through which '''all of the addon contents''' (such as vehicles, weapons, sounds, functions, etc.) will be processed and applied to the game. | |||
This file should be created in the root of the Addon Folder. It is also possible to place additional '''config.cpp''' files in the subfolders of the addon, in which case the subfolders will be treated as separate addons by the game. | This file should be created in the root of the Addon Folder. It is also possible to place additional '''config.cpp''' files in the subfolders of the addon, in which case the subfolders will be treated as separate addons by the game. | ||
At the bare minimum, the '''config.cpp''' file requires a [[CfgPatches|CfgPatches]] class. This will allow the game to determine what external addons are required by this addon, what objects/weapons are being added, as well as | At the bare minimum, the '''config.cpp''' file requires a [[CfgPatches|CfgPatches]] class. | ||
This will allow the game to determine what external addons are required by this addon, what objects/weapons are being added, as well as miscellaneous information about the addon such as the author, version, etc. | |||
All added/patched classes should be added to this file in order to be recognized and configured by the game. | |||
=== Config Modifications === | |||
To add new content or modify existing ones, you typically need to create a sub-class into designated classes for that type of content. | |||
{{Feature| | For example, to add a new vehicle or modify an existing one, a new sub-class is created under {{hl|CfgVehicles}}: | ||
<syntaxhighlight lang="cpp"> | |||
// CfgVehicles is a special class that contains all object classes that are meant for AI/player interaction, such as Vehicles, Buildings, etc. | |||
class CfgVehicles | |||
{ | |||
// Forward-declaration of class Car | |||
// This tells the game that this class is an existing class in CfgVehicles and we're just importing it to use it in our own config | |||
class Car; | |||
// Inherit the class Car | |||
// Note that if MyNewVehicle already exists, instead of creating a new one, we just end up modifying (i.e. patching) it | |||
class MyNewVehicle : Car | |||
{ | |||
// All properties of MyNewVehicle will be identical to Car, except for the model property which we just modified | |||
model = "..."; | |||
}; | |||
}; | |||
</syntaxhighlight> | |||
The above config is just an example for demonstration purposes. For more details on how to create vehicles, weapons, etc. please refer to the existing documentations and the [[Arma_3:_Asset_Samples|Arma 3 Samples]] (available on Steam). | |||
{{Feature|informative| Visit [[Class_Inheritance|this page]] to learn more about config classes.}} | |||
All added/modified config classes, such as [[CfgVehicles]], [[CfgWeapons]], [[CfgAmmo]], [[CfgFunctions]], [[CfgCloudlets]], etc. need to be added to this file.<br> | All added/modified config classes, such as [[CfgVehicles]] (objects, backpacks), [[CfgWeapons]] (weapons, weapon attachments, uniforms, vests, etc.), [[CfgMagazines]] (magazines, grenades, mines, etc.), [[CfgAmmo]] (projectiles, submunition, etc.), [[CfgFunctions]] (registered scripts), [[CfgCloudlets]] (particles), [[GUI_Tutorial|GUI elements]], etc. need to be added to this file.<br> | ||
If the | If the {{hl|config.cpp}} file gets too big (which happens a lot with large mods), it is recommended to split it into separate files (e.g. {{hl|CfgFunctions.hpp}} for CfgFunctions, etc.), and [[PreProcessor_Commands#.23include|#include]] them in the '''config.cpp''' file: | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
// All addons must have this class | // All addons must have this class | ||
class CfgPatches | class CfgPatches | ||
{ | { | ||
// ... | |||
}; | }; | ||
// These files are sitting next to config.cpp in the current folder | |||
#include "cfgFunctions.hpp" | #include "cfgFunctions.hpp" | ||
#include "cfgVehicles.hpp" | |||
#include "some_other_file.hpp" | #include "some_other_file.hpp" | ||
#include "ui\ | // This file is in the folder "ui" | ||
#include "ui\gui.hpp" | |||
// etc. | // etc. | ||
</syntaxhighlight> | </syntaxhighlight> | ||
=== Scripts === | === Scripts === | ||
{{Feature|informative|It is recommended to register your scripts as functions in the [[Arma_3:_Functions_Library|CfgFunctions]] class, especially if they are expected to be executed many times during the mission.}} | |||
Scripts can be executed through appropriate classes in '''config.cpp'''. There are several ways to execute scripts, depending on when the execution take place.<br> | |||
Scripts that need to | For example, scripts that need to be executed upon the start of the mission can be added to the [[Arma_3:_Functions_Library|CfgFunctions]] class with an init flag, such as <syntaxhighlight lang="cpp" inline>preInit = 1</syntaxhighlight>. | ||
Scripts that need to be executed when a certain event takes place (e.g. object creation, death, bullet impact, damage, etc.) can use [[Arma_3:_Event_Handlers|Event Handlers]], if applicable. Vehicles, weapons, projectiles, etc. can use configs to add event handlers once the object is created. It is also possible to add event handlers using scripts at a later point in the game. | |||
In the case of scenarios (i.e. missions), scripts can be executed using [[Event_Scripts|Event Scripts]] (e.g. {{hl|init.sqf}}), using object init fields in 3DEN, triggers and waypoint statements, or {{hl|CfgFunctions}} similar to addons (except instead of {{hl|config.cpp}}, the classes are placed in [[Description.ext]]) | |||
Some community modifications, such as '''Community Base Addons 3 (CBA)''', add more ways to execute scripts, such as executing a script every time a unit is created (object init event handlers) | Some community modifications, such as '''Community Base Addons 3 (CBA)''', add more ways to execute scripts, such as executing a script every time a unit is created (object init event handlers) | ||
Line 102: | Line 144: | ||
== Signing the Addon (optional) == | == Signing the Addon (optional) == | ||
Signing an addon allows it to be used in multiplayer servers that check for addon signatures. | |||
Signing an addon allows it to be used in multiplayer servers that check for addon signatures. A private key is required for signing the addon. | |||
=== Keys and Signatures === | === Keys and Signatures === | ||
There are two types of keys | |||
There are two types of keys involved in signing addon: '''Private''' keys and '''Public''' keys. | |||
==== Private Key ==== | ==== Private Key ==== | ||
A private key is a file in {{ | A private key is a file in {{hl|.biprivatekey}} format. It is used by the mod publisher to sign their addons. | ||
{{Feature | | {{Feature|important|The private keys, as the name suggests, should never be given to the public!}} | ||
==== Public Key ==== | ==== Public Key ==== | ||
A public key is a file in {{ | A public key is a file in {{hl|.bikey}} format. It is used by the server to check the addon signatures. <br> | ||
It is safe to give these files to the public (typically published with the mod itself; see {{Link|#Mod Folder Structure}}). | |||
==== Signature ==== | ==== Signature ==== | ||
A signature is a file placed next to the PBO file, to verify its contents.<br> | A signature is a file placed next to the PBO file, to verify its contents.<br> | ||
They are named as {{ | They are named as {{hl|addon_name.pbo.key_name.bisign}} | ||
=== Creating the Keys === | === Creating the Keys === | ||
To create | To create the private and public keys, use the [[DSUtils]] program in Arma 3 Tools. | ||
{{Feature | | {{Feature|informative|There is no need to create a new key with every version of an addon. That would require all servers using the addon to update the key after every update, which can be inconvenient. }} | ||
{{Wiki|stub}} | {{Wiki|stub}} | ||
Line 128: | Line 173: | ||
== Building the Addon == | == Building the Addon == | ||
=== Addon Builder === | === Addon Builder === | ||
'''Main interface''' | '''Main interface''' | ||
[[File:Addon Builder Folder Setup.png|frameless|right|Folder Setup in Addon Builder]] | [[File:Addon Builder Folder Setup.png|frameless|right|Folder Setup in Addon Builder]] | ||
* '''Addon source directory:''' Should be the path to the Addon folder | * '''Addon source directory:''' Should be the path to the Addon folder | ||
* '''Destination directory or filename:''' The output folder which will contain the PBO file, as well as the signature (if "Sign output PBO" is checked) | * '''Destination directory or filename:''' The output folder which will contain the PBO file, as well as the signature (if "Sign output PBO" is checked) | ||
* '''Sign Output PBO:''' See | * '''Sign Output PBO:''' See {{Link|#Signing the Addon (optional)|Signing the Addon}} | ||
* '''Binarize:''' Binarized configs are loaded faster by the game. They will also be checked for syntax errors during the packing process. | * '''Binarize:''' Binarized configs are loaded faster by the game. They will also be checked for syntax errors during the packing process. | ||
'''Options''' | '''Options''' | ||
* '''List of files to copy directly:''' By default, only '''.cpp''' files are included in the addon. If other files need to be copied to the addon (e.g. scripts, models, etc.), add them to the list, separated by {{ | * '''List of files to copy directly:''' By default, only '''.cpp''' files are included in the addon. If other files need to be copied to the addon (e.g. scripts, models, etc.), add them to the list, separated by {{hl|;}} or {{hl|,}}. It is also possible to use the wildcard character {{hl|*}} instead of the file names/formats. For example: | ||
*.p3d;*.paa;*.sqf;*.fxy;*.xml;*.bisurf;*.rvmat;*.h | *.p3d;*.paa;*.sqf;*.fxy;*.xml;*.bisurf;*.rvmat;*.h | ||
All files will be copied in their original folder structure with respect to the Addon Folder. | All files will be copied in their original folder structure with respect to the Addon Folder. | ||
{{Feature | | {{Feature|informative|When the "Binarize" option is checked, all [[PreProcessor_Commands#.23include|#include]]d '''.hpp''' files in '''config.cpp''' will be added to '''config.bin''' file. Therefore there is no need to add '''*.hpp''' to the list of files to add (unless they're used elsewhere in the mod, such as scripts)}} | ||
* '''Addon Prefix:''' See | * '''Addon Prefix:''' See {{Link|#Addon Prefix}} | ||
* '''Path to private key file:''' Set this path to the private key file (if "Sign output PBO" is checked) | * '''Path to private key file:''' Set this path to the private key file (if "Sign output PBO" is checked) | ||
Line 148: | Line 195: | ||
=== Mikero's pboProject === | === Mikero's pboProject === | ||
=== | Simply set the paths and click on Crunch. If the {{Link|#Addon Prefix}} is not defined, it will be set the same as the input folder name by default<br> | ||
{{ | Note that pboProject requires all files referenced in the config to be physically present in the P drive, even if they come from other mods. (for example, if you use a vanilla asset in your addon, such as {{hl|A3\Data_F\Something.format}}, you must copy that file to P drive: {{hl|P:\A3\Data_F\Something.format}}) | ||
=== HEMTT === | |||
{{Link|https://github.com/BrettMayson/HEMTT|HEMTT}} is a build system for addons. | |||
It has the great advantage of handling multiple addons at once as well as being able to be used in CLI environments like {{Link|link=https://github.com/arma-actions/hemtt|text=GitHub Actions}}. | |||
The [[:Category:Arma_3:_Official_Tools|Arma 3 Tools]] have to be installed for it to binarize files. After installing hemtt you can get information about the usage with {{hl|hemtt help}}. For a basic setup follow these steps: | |||
In the command line enter the following command: | In the command line enter the following command: | ||
hemtt init | |||
If you get an error that hemtt was not found make sure that the executable is in the project folder or the hemtt directory is part of your %PATH% variable. Fill out the prompts. Then create a folder called "addons". Inside of this folder create another folder called "main". Then create the following files: | If you get an error that hemtt was not found make sure that the executable is in the project folder or the hemtt directory is part of your %PATH% variable. Fill out the prompts. | ||
Then create a folder called "addons". Inside of this folder create another folder called "main". Then create the following files: | |||
* [[PBOPREFIX|$PBOPREFIX$]] | * [[PBOPREFIX|$PBOPREFIX$]] | ||
\z\prefix\addons\main | \z\prefix\addons\main | ||
* config.cpp | * config.cpp | ||
< | <syntaxhighlight lang="cpp"> | ||
#include "script_component.hpp" | |||
class CfgPatches { | class CfgPatches | ||
{ | |||
class ADDON | |||
{ | |||
name = CSTRING(component); | |||
units[] = {}; | |||
weapons[] = {}; | |||
requiredVersion = REQUIRED_VERSION; | |||
requiredAddons[] = { "CBA_main" }; | |||
author = "You"; | |||
url = "https://community.bistudio.com/wiki"; | |||
};</ | VERSION_CONFIG; | ||
}; | |||
}; | |||
</syntaxhighlight> | |||
* script_component.hpp | * script_component.hpp | ||
< | <syntaxhighlight lang="cpp"> | ||
#define COMPONENT main | |||
#include "script_mod.hpp" | #include "script_mod.hpp" | ||
#ifdef DEBUG_ENABLED_MAIN | #ifdef DEBUG_ENABLED_MAIN | ||
#define DEBUG_MODE_FULL | |||
#endif | #endif | ||
#ifdef DEBUG_SETTINGS_MAIN | #ifdef DEBUG_SETTINGS_MAIN | ||
#define DEBUG_SETTINGS DEBUG_SETTINGS_MAIN | |||
#endif | #endif | ||
#include "script_macros.hpp"</ | #include "script_macros.hpp" | ||
</syntaxhighlight> | |||
* script_mod.hpp | * script_mod.hpp | ||
The MAINPREFIX defaults to "z", the PREFIX is the one you entered during setup. | The MAINPREFIX defaults to "z", the PREFIX is the one you entered during setup. | ||
< | <syntaxhighlight lang="cpp"> | ||
#define MAINPREFIX z | |||
#define PREFIX prefix | #define PREFIX prefix | ||
Line 199: | Line 259: | ||
#define VERSION_AR MAJOR,MINOR,PATCH | #define VERSION_AR MAJOR,MINOR,PATCH | ||
#define REQUIRED_VERSION 1.88</ | #define REQUIRED_VERSION 1.88 | ||
</syntaxhighlight> | |||
* script_macros.hpp | * script_macros.hpp | ||
This will add CBA as a dependency. | This will add CBA as a dependency. | ||
< | <syntaxhighlight lang="cpp">#include "\x\cba\addons\main\script_macros_common.hpp"</syntaxhighlight> | ||
* script_version.hpp | * script_version.hpp | ||
Keep track of your mod's version in this file. Follows {{ | Keep track of your mod's version in this file. Follows {{Link|link=https://semver.org/lang/de/|text=semantic versioning}}. | ||
< | <syntaxhighlight lang="cpp"> | ||
#define MAJOR 0 | |||
#define MINOR 0 | #define MINOR 0 | ||
#define PATCH 0</ | #define PATCH 0 | ||
</syntaxhighlight> | |||
Now you should be able to run | Now you should be able to run | ||
hemtt build | |||
The pbos are placed in the "addons" folder. | The pbos are placed in the "addons" folder. | ||
For more advanced setups and more examples check {{ | For more advanced setups and more examples check {{Link|link=https://github.com/CBATeam/CBA_A3|text=CBA's git repository}} as well as {{Link|link=https://github.com/BrettMayson/HEMTT|text=hemtt's GitHub}} page for documentation. | ||
# Numbered list item | # Numbered list item | ||
== Mod Folder Structure == | == Mod Folder Structure == | ||
The mod folder contents should be in a certain structure to be correctly recognized by the game, as well as when uploaded to the Steam Workshop using the Publisher tool.<br> | |||
The following tree list shows the general folder structure. Notice that some of these files/folders are optional, such as .bikey and .bisign files. | The following tree list shows the general folder structure. Notice that some of these files/folders are optional, such as .bikey and .bisign files. | ||
It is possible to ship other contents in the mod folder as well, such as documentation and changelog files. | It is possible to ship other contents in the mod folder as well, such as documentation and changelog files. | ||
{{Color|purple|@My_Mod}} {{cc|Mod folder}} | {{Color|purple|@My_Mod}} {{cc|Mod folder. The @ sign is not required, but it helps distinguish mods from official content.}} | ||
|__{{Color|darkorange|Addons}} {{cc|Addons folder, containing all addons and their signatures (if signed)}} | |__{{Color|darkorange|Addons}} {{cc|Addons folder, containing all addons and their signatures (if signed)}} | ||
| |__{{Color|teal|addon_name.pbo}} | | |__{{Color|teal|addon_name.pbo}} | ||
Line 234: | Line 300: | ||
|__{{Color|teal|mod.paa}} {{cc|(Optional) mod icon}} | |__{{Color|teal|mod.paa}} {{cc|(Optional) mod icon}} | ||
|__{{Color|teal|my_extension.dll}} {{cc|(Optional) [[Extensions|extension]] that was created as part of the mod, if any}} | |__{{Color|teal|my_extension.dll}} {{cc|(Optional) [[Extensions|extension]] that was created as part of the mod, if any}} | ||
|__{{Color|teal|my_mod_readme.pdf}} {{cc|(optional) Documentation file (not loaded by the game)}} | |||
{{GameCategory|arma3|Tutorials}} |
Latest revision as of 06:15, 23 April 2025
This page explains the steps required to create an addon (PBO file).
Prerequisites
- An addon making tool such as:
- Arma 3 Tools
- Mikero's Tools
- HEMTT (GitHub)
- A text editor, such as Notepad++ or Visual Studio Code.
Preparing the Addon
Place all required files (scripts, textures, fonts, models, etc.) in an empty folder, which hereafter will be referred to as the Addon folder.
It is recommended to organize the files into subfolders to avoid clutter.
In order to make this addon fully functional, at least two additional steps are required, which are explained in further detail in the subsequent sections:
- A file named config.cpp should be created in the root of the Addon Folder for the game to be able to recognize the addon contents.
- Paths to all files in the addon, such as script paths, model paths, etc. should be adjusted with respect to the Addon Prefix.
Addon Prefix
In simple terms, Addon Prefix is a virtual (in-game) path to the root folder of an addon. The game uses the addon prefix to find the files in the addon. This virtual path should preferably be unique to prevent collision with other addon files. The addon prefix is added to the PBO properties by the packing tool.
The addon prefix is typically a single word:
Addon_Name
It is also possible to use a directory-like prefix (where each pseudo-directory is separated by
Mod_Name\Addon_Name\Category\...
For example:
My_Faction_Mod\Faction_Name\Vehicles
It is also possible to use the same Addon Prefix in multiple addons (for example, to split an addon into smaller ones) However, note that their class names in CfgPatches must be different.
Once the addon prefix is set, the path to addon files will be as follows:
Addon_Prefix\Folder\File.format
For example, assume a file called car.p3d exists in the Addon Folder as follows:
Addon_Folder // Addon folder |__models // A folder in Addon Folder called "models" |__car.p3d // A p3d (3D model) file
Let's assume we've set the addon prefix to "My_Awesome_Car_Mod". In config.cpp, the model path should be:
model = "My_Awesome_Car_Mod\models\car.p3d";
In other words, instead of using Addon_Folder, every path should now start from the Addon Prefix.
Setting the Addon prefix
There are several ways to set the addon prefix, depending on the packing tool used. The instructions for two commonly used tools, namely Addon Builder, Mikero's Tools, and HEMTT, are explained.
Using Addon Builder
To set the addon prefix using Addon Builder, simply navigate to "Options" and modify the "Addon prefix" edit box.
Using Mikero's pboProject
To set the addon prefix using Mikero's pboProject, create a text file called $PBOPREFIX$.txt in the root of the addon folder, and type the addon prefix in the file.
Using HEMTT
To set the addon prefix using HEMTT, create a text file called $PBOPREFIX$ in the root of the addon folder, and type the addon prefix in the file. For more information on using HEMTT, see the "HEMTT Book".
Config.cpp
When the game loads an addon, it looks for a file called config.cpp to determine how to process the addon contents. Without this file, the addon will be ignored by the game. In other words, config.cpp is the hub through which all of the addon contents (such as vehicles, weapons, sounds, functions, etc.) will be processed and applied to the game.
This file should be created in the root of the Addon Folder. It is also possible to place additional config.cpp files in the subfolders of the addon, in which case the subfolders will be treated as separate addons by the game.
At the bare minimum, the config.cpp file requires a CfgPatches class. This will allow the game to determine what external addons are required by this addon, what objects/weapons are being added, as well as miscellaneous information about the addon such as the author, version, etc.
All added/patched classes should be added to this file in order to be recognized and configured by the game.
Config Modifications
To add new content or modify existing ones, you typically need to create a sub-class into designated classes for that type of content.
For example, to add a new vehicle or modify an existing one, a new sub-class is created under CfgVehicles:
// CfgVehicles is a special class that contains all object classes that are meant for AI/player interaction, such as Vehicles, Buildings, etc.
class CfgVehicles
{
// Forward-declaration of class Car
// This tells the game that this class is an existing class in CfgVehicles and we're just importing it to use it in our own config
class Car;
// Inherit the class Car
// Note that if MyNewVehicle already exists, instead of creating a new one, we just end up modifying (i.e. patching) it
class MyNewVehicle : Car
{
// All properties of MyNewVehicle will be identical to Car, except for the model property which we just modified
model = "...";
};
};
The above config is just an example for demonstration purposes. For more details on how to create vehicles, weapons, etc. please refer to the existing documentations and the Arma 3 Samples (available on Steam).
All added/modified config classes, such as CfgVehicles (objects, backpacks), CfgWeapons (weapons, weapon attachments, uniforms, vests, etc.), CfgMagazines (magazines, grenades, mines, etc.), CfgAmmo (projectiles, submunition, etc.), CfgFunctions (registered scripts), CfgCloudlets (particles), GUI elements, etc. need to be added to this file.
If the config.cpp file gets too big (which happens a lot with large mods), it is recommended to split it into separate files (e.g. CfgFunctions.hpp for CfgFunctions, etc.), and #include them in the config.cpp file:
// All addons must have this class
class CfgPatches
{
// ...
};
// These files are sitting next to config.cpp in the current folder
#include "cfgFunctions.hpp"
#include "cfgVehicles.hpp"
#include "some_other_file.hpp"
// This file is in the folder "ui"
#include "ui\gui.hpp"
// etc.
Scripts
Scripts can be executed through appropriate classes in config.cpp. There are several ways to execute scripts, depending on when the execution take place.
For example, scripts that need to be executed upon the start of the mission can be added to the CfgFunctions class with an init flag, such as preInit = 1
.
Scripts that need to be executed when a certain event takes place (e.g. object creation, death, bullet impact, damage, etc.) can use Event Handlers, if applicable. Vehicles, weapons, projectiles, etc. can use configs to add event handlers once the object is created. It is also possible to add event handlers using scripts at a later point in the game.
In the case of scenarios (i.e. missions), scripts can be executed using Event Scripts (e.g. init.sqf), using object init fields in 3DEN, triggers and waypoint statements, or CfgFunctions similar to addons (except instead of config.cpp, the classes are placed in Description.ext)
Some community modifications, such as Community Base Addons 3 (CBA), add more ways to execute scripts, such as executing a script every time a unit is created (object init event handlers)
Signing the Addon (optional)
Signing an addon allows it to be used in multiplayer servers that check for addon signatures. A private key is required for signing the addon.
Keys and Signatures
There are two types of keys involved in signing addon: Private keys and Public keys.
Private Key
A private key is a file in .biprivatekey format. It is used by the mod publisher to sign their addons.
Public Key
A public key is a file in .bikey format. It is used by the server to check the addon signatures.
It is safe to give these files to the public (typically published with the mod itself; see Mod Folder Structure).
Signature
A signature is a file placed next to the PBO file, to verify its contents.
They are named as addon_name.pbo.key_name.bisign
Creating the Keys
To create the private and public keys, use the DSUtils program in Arma 3 Tools.
Building the Addon
Addon Builder
Main interface
- Addon source directory: Should be the path to the Addon folder
- Destination directory or filename: The output folder which will contain the PBO file, as well as the signature (if "Sign output PBO" is checked)
- Sign Output PBO: See Signing the Addon
- Binarize: Binarized configs are loaded faster by the game. They will also be checked for syntax errors during the packing process.
Options
- List of files to copy directly: By default, only .cpp files are included in the addon. If other files need to be copied to the addon (e.g. scripts, models, etc.), add them to the list, separated by ; or ,. It is also possible to use the wildcard character * instead of the file names/formats. For example:
*.p3d;*.paa;*.sqf;*.fxy;*.xml;*.bisurf;*.rvmat;*.h
All files will be copied in their original folder structure with respect to the Addon Folder.
- Addon Prefix: See Addon Prefix
- Path to private key file: Set this path to the private key file (if "Sign output PBO" is checked)
Other options can be left at their default values.
Finally, click on "Pack" to start the packing process.
Mikero's pboProject
Simply set the paths and click on Crunch. If the Addon Prefix is not defined, it will be set the same as the input folder name by default
Note that pboProject requires all files referenced in the config to be physically present in the P drive, even if they come from other mods. (for example, if you use a vanilla asset in your addon, such as A3
HEMTT
HEMTT is a build system for addons. It has the great advantage of handling multiple addons at once as well as being able to be used in CLI environments like GitHub Actions. The Arma 3 Tools have to be installed for it to binarize files. After installing hemtt you can get information about the usage with hemtt help. For a basic setup follow these steps:
In the command line enter the following command:
hemtt init
If you get an error that hemtt was not found make sure that the executable is in the project folder or the hemtt directory is part of your %PATH% variable. Fill out the prompts. Then create a folder called "addons". Inside of this folder create another folder called "main". Then create the following files:
\z\prefix\addons\main
- config.cpp
#include "script_component.hpp"
class CfgPatches
{
class ADDON
{
name = CSTRING(component);
units[] = {};
weapons[] = {};
requiredVersion = REQUIRED_VERSION;
requiredAddons[] = { "CBA_main" };
author = "You";
url = "https://community.bistudio.com/wiki";
VERSION_CONFIG;
};
};
- script_component.hpp
#define COMPONENT main
#include "script_mod.hpp"
#ifdef DEBUG_ENABLED_MAIN
#define DEBUG_MODE_FULL
#endif
#ifdef DEBUG_SETTINGS_MAIN
#define DEBUG_SETTINGS DEBUG_SETTINGS_MAIN
#endif
#include "script_macros.hpp"
- script_mod.hpp
The MAINPREFIX defaults to "z", the PREFIX is the one you entered during setup.
#define MAINPREFIX z
#define PREFIX prefix
#include "script_version.hpp"
#define VERSION MAJOR.MINOR.PATCH
#define VERSION_AR MAJOR,MINOR,PATCH
#define REQUIRED_VERSION 1.88
- script_macros.hpp
This will add CBA as a dependency.
#include "\x\cba\addons\main\script_macros_common.hpp"
- script_version.hpp
Keep track of your mod's version in this file. Follows semantic versioning.
#define MAJOR 0
#define MINOR 0
#define PATCH 0
Now you should be able to run
hemtt build
The pbos are placed in the "addons" folder.
For more advanced setups and more examples check CBA's git repository as well as hemtt's GitHub page for documentation.
- Numbered list item
Mod Folder Structure
The mod folder contents should be in a certain structure to be correctly recognized by the game, as well as when uploaded to the Steam Workshop using the Publisher tool.
The following tree list shows the general folder structure. Notice that some of these files/folders are optional, such as .bikey and .bisign files.
It is possible to ship other contents in the mod folder as well, such as documentation and changelog files.
@My_Mod // Mod folder. The @ sign is not required, but it helps distinguish mods from official content. |__Addons // Addons folder, containing all addons and their signatures (if signed) | |__addon_name.pbo | |__addon_name.pbo.key_name.bisign | |__other_addon.pbo | |__other_addon.pbo.key_name.bisign | |__Keys // Keys folder (if the mod is signed) | |__key_name.bikey | |__mod.cpp // (Optional) mod.cpp contains the mod description, icon, hover icon, etc. |__mod.paa // (Optional) mod icon |__my_extension.dll // (Optional) extension that was created as part of the mod, if any |__my_mod_readme.pdf // (optional) Documentation file (not loaded by the game)