Jump to content

Recommended Posts

Hey everyone.

I'm currently building a mission in which the Polish (Blufor) attack the Germans (Opfor). I built a little area outside of the map where everyone boards a plane. This happens at night since i want to kind of simulate the 3 hour flight. Now i have a "Time Skip" module via trigger but its happening so suddenly. I was wondering if there is a way to fade into a blackscreen which says "3 hours later..." or anything like that. And when the screen fades away its bright and everyone can do a paradrop. 

Just saying: I'm not big into scripting myself. I'm happy for every suggestion, maybe even tipps on that one.

Share this post


Link to post
Share on other sites

In trigger OnAct:

 

titleCut ["", "BLACK FADED", 999];
[] Spawn {
	titleText ["3 hours later.....","PLAIN DOWN"]; 
	titleFadeOut 10;
	skipTime 3;			
titleCut ["", "BLACK IN", 5];
};

 

  • Like 3

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

×