Jump to content
Sign in to follow this  
Balder

Intro logo

Recommended Posts

Could anyone please explain to me how to make a logo show up in a intro?

i've made a logo in .paa format, and need it to show during the intro i made for a mp mission. crazy_o.gifbanghead.gif

Share this post


Link to post
Share on other sites

Create a file called "description.ext" in your missions folder. In there you put the following lines

class RscTitles

{

class RscIntroLogo

{

idd = -1;

movingEnable = 0;

duration = 10;

controlsBackground[ ]={ introLogo };

controls[ ]={ };

class introLogo

{

idc = -1;

type = 0;

style = 48;

font = "TahomaB";

<span style='color:blue'>text = "mylogo.paa";</span>

colorBackground[ ]={ 0,0,0,0 };

colorText[ ]={ 1,1,1,1 };

sizeEx = 0.1;

<span style='color:blue'>x = 0;

y = 0;

w = 1;

h = 1;</span>

};

};

};

Into your init.sqf you put a instruction

titleRsc[ "RscIntroLogo","PLAIN" ];

Share this post


Link to post
Share on other sites

Thanks ManDay, thats almost the same i've been trying. I got a little further this time, but now arma crashes saying:

"Cannot create system surface memory"

can this happen because the .paa image size is to big? the size of image is 512X512px and filesize is 102KB

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  

×