Jump to content
Sign in to follow this  
1para{god-father}

Debriefing and parsing Variables to it ?

Recommended Posts

OK trying to get some information onto the Debrief screen but having an issue showing some Array information - any idea how i can pass some Array information to the Debrief is it possible ? sorry cannot get my head around it

Description.ext


class CfgDebriefing
{  
class End1
{
	title = "Mission Completed";
	subtitle = "";
	description = [format ["Mission Failed! It took you %1 minutes to finish the mission! \n You had %2 hour(s), %3 minute(s) and %4 second(s) left! \n With a total score of.....  %5  \n And you Completed %6 Tasks", floor((mission_end_array select 1) / 60), (mission_end_array select 2), (mission_end_array select 3), (mission_end_array select 4), STR(totalscore), STR(PS_Tasks)];
	backgroundPicture = "";
	picture = "b_inf";
	pictureColor[] = {0.0,0.3,0.6,1};
};
};

http://community.bistudio.com/wiki/Debriefing

Share this post


Link to post
Share on other sites

Not possible to pass parameters to debriefing as far as I am aware.

Share this post


Link to post
Share on other sites
Not possible to pass parameters to debriefing as far as I am aware.
Custom Sections

description.ext:

class CfgDebriefingSections

{

class Loot

{

title = "Collected weapons";

variable = "BIS_loot";

};

};

title: Section title displayed in horizontal listbox

variable: missionNamespace variable containing string to be shown. It will be parsed and displayed as structured text. When empty, section won't be visible at all.

Well it seems it is kinda possible.

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  

×