Jump to content
Sign in to follow this  
CMajor28

Skip Debriefing

Recommended Posts

How do you skip a debriefing in a mission. I have 2 missions I want to combine into 1, but they are on different islands so I can't use merge. I'm okay with the loading screen in between, I just don't want any debriefing

Share this post


Link to post
Share on other sites

				waitUntil {!isNull findDisplay 53;};
			ctrlActivate (findDisplay 53 displayCtrl 1);
			findDisplay 53 closeDisplay 1;

That waits until the briefing screen is on and presses automatically continue effectively skipping it.

Share this post


Link to post
Share on other sites

Viba, is it possible to skip a briefing (map and tasks,notes, etc.) that is shown after a loading screen, with findDisplay?

I've found, there's no such briefing without 'briefing.html' in a mission's folder, but i need it for debriefing.

'Briefing = 0' in description.ext doesn't work

Edited by Anrio

Share this post


Link to post
Share on other sites

The code I posted above does just that.

Share this post


Link to post
Share on other sites

I used this code in init.sqf, but i think this file executes after pressing "next" button.

I tried onPreloadFinished at the beginning

onPreloadFinished {
               waitUntil {!isNull findDisplay 53;};
               ctrlActivate (findDisplay 53 displayCtrl 1);
               findDisplay 53 closeDisplay 1; 
onPreloadFinished {};
};

but it still doesn't work

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  

×