Funny, that's what I'm working on these days...
It is more or less something like that that you have to add in your Description file :
class RscTitles
{
titles[]={"igor"};
class igor
{
idd=-1;
movingEnable=0;
duration=9;
fadein=2;
name="igor";
controls[]={"cont"};
class cont
{
type=0;
idc=-1;
style=2;
colorBackground[]={0,0,0,0 };
colorText[]={1,1,1,1};
font="garamond64";
size=1;
text="Igor Drukov presents";
x=0.2;
y=0.2;
w=0.6;
h=0.9;
};
};
igor is the name that you will find at the bottom of the resource list in the trigger which, when activated, will display the text "Igor Drukov presents", with the defined coordinates. Very classy.
Note that the "titles[]={"igor"};" part is not necessary (I think). If you want to add other resources, just add the name of your resource each time igor appears and modify the parameters; you can use the name "cont" for the control of all you resources, but it has to be copied each time. I hope this is clear enough... If not, let me know.
Now, I too have a question : what are the different font that can be used ? Does anyone know that ?