Jump to content
Sign in to follow this  
sgt_hawkins

Trigger Effects

Recommended Posts

Is anyone else having a problem with the trigger effects. I cant get any of the black outs or fades to work. I could get them to work in Arma but not in Arma 2. Is there another way I can get a Black fade on the screen.. I want to simulate a black out. Thanks in advance.

Share this post


Link to post
Share on other sites

Make a trigger, in effects choose text and "Black out" effect (this will fade screen to black). After that create a end trigger with some delay like 15s (min,mid,max=15) in effects choose text and "Black Faded"(this will end up a game).

This how it looks in mission.sqm

class Item9
	{
		position[]={8093.1563,162.58844,12060.431};
		activationBy="WEST";
		interruptable=1;
		type="END1";
		age="UNKNOWN";
		class Effects
		{
			titleType="TEXT";
			titleEffect="BLACK FADED";
			title="MISSION COMPLETED!";
		};
	};
	class Item10
	{
		position[]={8128.1426,160.63309,12051.062};
		a=90;
		b=90;
		activationBy="WEST";
		interruptable=1;
		age="UNKNOWN";
		class Effects
		{
			titleType="TEXT";
			titleEffect="BLACK OUT";
			title="MISSION COMPLETED!";
		};
	};

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  

×