Jump to content
Sign in to follow this  
cobra5000

adding pictures

Recommended Posts

i want to add "tv_screen_aan_co.paa" (the AAN News picture from ARMA1) to my outro.

do you know how i add and make this picture cover all screen of the game?

Share this post


Link to post
Share on other sites

Quart, i mean i need to add arma1 AAN news which appear in every cutscene in arma1 campaign!

Share this post


Link to post
Share on other sites
i tried this one:

class RscTitles

{

titles[] = {News}; // optional

class News

{

idd = -1;

movingEnable = false;

duration = 120;

fadein = 0;

name = "News";

controls[] = {AANbig};

class AANbig

{

x = 0;

y = 0;

w = 1;

h = 1;

text = "tv_screen_aan_co.paa";

};

};

};

but ingame editor it said:

resource title News not found

quart, the arma1 pic is for my arma2 mission

Edited by Cobra5000

Share this post


Link to post
Share on other sites

Is this possible and why not use the one I was talking about because its exactly the same (I think...)

Share this post


Link to post
Share on other sites

Because i want to make myown ANN with this pic which used also in all ending of PMC Campaign

Share this post


Link to post
Share on other sites

Here's a demo mission showing adding an intro image.

description.ext:

class RscPicture 
{ 
access=0; 
type=0; 
idc=-1; 
style=48; 
colorBackground[]={0,0,0,0}; 
colorText[]={1,1,1,1}; 
font="TahomaB"; 
sizeEx=0; 
lineSpacing=0; 
text=""; 
};

class RscTitles
{
titles[] = {introImage}; // optional

class introImage
{	
	idd = -1;	
	movingEnable = false;
	duration = 5; // 5 second display time
	fadein = 2; // 2 second fade in - 7 seconds in all.
	name = "IntroImage"; 
	controls[] = {"image1"};

	class image1: RscPicture
	{	
		x = 0;
		y = 0;
		w = 1;
		h = 1;
		text = "aan.paa";
	};	
};
};

init.sqf:

// Black screen, fade intro.
titleCut ["", "BLACK FADED", 999];

// start the display of the intro picture
titleRsc["introImage", "PLAIN", 1];

// We spawn this so it runs along side the 7 second display from within description.ext
[] Spawn {
sleep 7; // 7 seconds from description.ext

// blur fade in from black
"dynamicBlur" ppEffectEnable true;   
"dynamicBlur" ppEffectAdjust [6];   
"dynamicBlur" ppEffectCommit 0;     
"dynamicBlur" ppEffectAdjust [0.0];  
"dynamicBlur" ppEffectCommit 5;  

titleCut ["", "BLACK IN", 5];
};

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  

×