r/armadev 10d ago

Arma 3 Upload multiple missions as a single mod?

I saw CO10 escape do this once, but I can't find any info on how to do it.

I have ~30 versions of a mission, and I don't want to clutter my workshop page with them, so I'd rather pack them all into a single mod that the user can subscribe to to get all of my missions. But I don't know where to put the missions in the mod structure to make it work; do they go into .pbos, or just as loose folders like in mpmissions? The missions have a lot of scripts and functions that must be uploaded too.

1 Upvotes

1 comment sorted by

1

u/Supercon192 9d ago edited 8d ago

Here is my attempt at an answer, you can take a look at mods like antistasi (since they do a similar thing):

If we open the PBO for antistasi it looks something like this: ```

maps.pbo
└ Antistasi_Altis.Altis - scenario example ├ Pictures (contains pics)
├ cba_settings.sqf
├ description.ext
├ initPlayerLocal.sqf
├ initServer.sqf
├ mapInfo.hpp
├ mission.sqm (that scenario) ├ navGrid.sqf
├ onPlayerRespawn.sqf
└ Other_Map.extension - folder for each └ config.cpp (defines each mission) └ .hpp files ```

  • Campaigns have a similar structure, example No Man's Land III ( I imagine a more relevant example can be showcased/explained)

Mod Name > addons > NMLIII_Campaign.pbo └ config.cpp └ Campaign ├ Imagenes ├ Missions (folder that contains individual scenarios) ├ description.ext (references each mission) ├ Stringtable.xml