Jump to content
Sign in to follow this  
Ice_Rhino

Question - class CfgDebriefing

Recommended Posts

Hi

I am using the following code in my description.ext

class CfgDebriefing
{  
class End1
{
	title = "Mission Failed";
	subtitle = "";
	description = "Blah, Blah, Blah";
	pictureBackground = "";
	picture = "";
	pictureColor[] = {0.0,0.3,0.6,1};
};
};

I am then referencing End1 via a trigger action. Is it possible to have an End2, End3 etc so that different triggers trigger different end text etc? If so, how do I embed the additional 'Ends' into the afore listed code?

Thanks

Share this post


Link to post
Share on other sites
class CfgDebriefing
{  
class End1
{
	title = "Mission Failed";
	subtitle = "";
	description = "Blah, Blah, Blah";
	pictureBackground = "";
	picture = "";
	pictureColor[] = {0.0,0.3,0.6,1};
};
};

You just have to change the class name.

Adding End2:

class CfgDebriefing
{  
class End1
{
	title = "Mission Failed";
	subtitle = "";
	description = "Blah, Blah, Blah";
	pictureBackground = "";
	picture = "";
	pictureColor[] = {0.0,0.3,0.6,1};
};

       class End2
{
	title = "Mission Failed";
	subtitle = "";
	description = "Blah, Blah, Blah";
	pictureBackground = "";
	picture = "";
	pictureColor[] = {0.0,0.3,0.6,1};
};
};

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  

×