Navigation

  • index
  • next |
  • previous |
  • Antistasi Guide documentation »
  • Dev Guide »
  • How to build Antistasi

Logo of Antistasi Guide

Table of Contents

  • Beginners Guide for Antistasi v3.0
  • Detailed Reference Guide
  • Dev Guide
    • General
    • Development
      • Dev Tools Starter Setup
      • How to build Antistasi
        • With AntistasiBuilder
        • With PowerShell
        • Adding build files to main mod
      • Advanced build methods
      • Antistasi Porting Instructions
      • How to Extend Antistasi?
      • Technical Standards for Core Code Contributions
      • Addon Functions & Folders Library
      • Debug Console Commands for Devs
      • Translation-Localization of Antistasi via Tolgee
    • Deprecated

GitHub

Star
Follow @official-antistasi-community

How to build Antistasi

Antistasi, of course, can’t simply be run as a loose collection of files slapped together in a folder - it needs to be built first.
There are a few different ways listed here for how to do that, ordered by preference: try the first method, then the second and so on if they dont work.
At the end of this documentation is a guide on how to load your files as a mod into the game.
The guide below is only for Version 2.6.0 and onwards. If you want to build an older version, look here.
If none of the methods on this page work on your computer or you want to optimize your workflow further, see the advanced build methods here.

With AntistasiBuilder

With AntistasiBuilder

First time setup

  • The Arma 3 Tools program needs to be installed for this. It can be found on Steam under the Tools section of your games.

  • AntistasiBuilder can be found in the main installation folder, where the A3A and Tools folders are located.

  • To set the program up the first time, run the executable once. This will generate a config file called AntistasiBuilder.cfg in the same folder.

  • Open that config file and add the path to the Arma 3 Tools directory under -a3ToolsDir="PATH". For example: -a3ToolsDir="H:/SteamLibrary/steamapps/common/Arma 3 Tools" Make sure that the path is in quotes.

  • Save the config file and close it.

Building the mod

To build the mod, run the AntistasiBuilder.exe file. It should generate the build files to the /build/A3A folder.

AntistasiBuilder.exe has a bug in which file paths with spaces in them will break the program. If this happens, you will see an error relating to an invalid number of parameters. Try moving your Antistasi folder to a path without spaces. If your username has spaces and you can’t move it higher, you can try one of the following methods.

With PowerShell

With PowerShell

  • Navigate to your main Antistasi folder, then /Tools/Builder

  • Right click on the buildAddons.ps1 and select “Run with Powershell”

  • This will build the mod and put it in the same /build/A3A folder

  • If this is your first time interacting with PowerShell scripts, you might need to setup the execution policy on your computer. Open a PowerShell window as an administrator and run Set-ExecutionPolicy -ExecutionPolicy Unrestricted to allow foreign scripts to run.

Adding build files to main mod

Adding build files to main mod

  • With most methods, your build files will be in /build/A3A. The PBOs will then be in /addons.

  • In your Arma 3 Launcher, go to the “Mods” page and click on the “Local Mod” button at the top.

  • Open the /build/A3A folder, where you can see the addons folder.

  • This will add a mod to your launcher, which you can then load as a mod. Do not load this mod with the normal Antistasi mod.

  • It is recommended to use this mod for testing alongside the mods in the Dev Tools Setup page.

Navigation

  • index
  • next |
  • previous |
  • Antistasi Guide documentation »
  • Dev Guide »
  • How to build Antistasi
© Copyright 2025, Official Antistasi Community. Last updated 2025/July/20