Jump to content
Sign in to follow this  
logan83

Including missions in my Mod

Recommended Posts

Hi all! I'm trying to include some missions in my PMC mod, but im having some troubles... this is the Config.cpp where i define the missions:

class CfgPatches
{
class LG83_BT_Missions
{
	units[] = {};
	weapons[] = {};
	requiredVersion = 1.10;
	requiredAddons[] = {};
	version = 1.0;
	author[] = {"Logan83"};
};
};

class CfgMissions {
class Missions {
	class BlackTalon {
		displayName = "BlackTalon Security";
		briefingName = "BlackTalon Security";
		overviewText = "Misiones de la compañia Blacktalon Security";
		overviewPicture = "\LG83_BT\Missions\data\Bt_Over.paa";
		author = "Logan83";

		class Mion_01 {
			displayName = "Blacktalon: Unidades de Seguridad";
			briefingName = "Blacktalon: Unidades de Seguridad";
			// It's critical that this not begin with '\' !!
			directory = "LG83_BT\Missions\BT_Security_ShowCase.Altis";
		};

		class Mision_02 {
			displayName = "Blacktalon: Contractors";
			briefingName = "Blacktalon: Contractors";
			// It's critical that this not begin with '\' !!
			directory = "LG83_BT\Missions\BT_Contractors_ShowCase.Altis";
		};

		class Mision_03 {
			displayName = "Blacktalon Air Showcase";
			briefingName = "Blacktalon Air Showcase";
			// It's critical that this not begin with '\' !!
			directory = "LG83_BT\Missions\BT_Air_ShowCase.Altis";
		};

	};
};
};


When i start the game, in the Scenario section, the missions aren't there, but the "folder" and the "Missions slot" are correct, someone can help? i add a capture and sorry about my poor english :S

oFhJMvA.jpg

Share this post


Link to post
Share on other sites

Could you post a picture of the file path from the desktop view too?

Is it like this?:

%Arma 3 directory that contains Arma 3.exe%\LG83_BT\Missions\BT_Air_ShowCase.Altis

Also are the missions in a folder or a .pbo?

Also Im not sure if you already know, but chck this out https://community.bistudio.com/wiki/CfgMissions

Edited by Benargee

Share this post


Link to post
Share on other sites

ohm the missions are in my mod missions folder ( arma3\@BlackTalon\LG83_BT\Missions\BT_Air_ShowCase.Altis), not in my douments, they aren't in pbos, they are Sqm files.

Share this post


Link to post
Share on other sites

Hmm most mods that I am fimiliar with have an addons folder like this: arma3\@BlackTalon\Addons\LG83_BT\Missions\BT_Air_ShowCase.Altis

Also once packaged in a pbo would be: arma3\@BlackTalon\Addons\LG83_BT.pbo

.pbo is a container file similar to .zip and .rar

I recommend Mikeros tools for this

I'm not in front of my gaming pc right now so my usefulness is limited.

Share this post


Link to post
Share on other sites

yes... there are a addon folder i forget (not copy-paste the path...) the mod runs like a charm, this isn't the problem... only sp scenarios added in the mod are giveme head pain... and yes the mod its binariced (PBO) not the mision (mision its in SQM) but its in the mod pbo...

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×