Put this in an description.ext in your mission/campaign dir:
class RscText
{
type=0;
idc=-1;
style=0;
h=0.080000;
colorBackground[]={0,0,0,0};
colorText[]={0.000000,1.000000,1.000000,1.000000};
font="tahomaB24";
sizeEx=0.040000;
};
class RscTitles
{
class MyText
{
idd=-1;
movingEnable=0;
duration=4;
name="Hello World Text";
controls[]={"Text"};
class Text : RscText
{
style="16 + 2 + 512";
lineSpacing=1.000000;
text="Hello World!";
x=0.050000;
y=0.30000;
w=0.900000;
h=0.500000;
colorText[]={0,0,1,1};
font="tahomaB36";
sizeEx=0.030000;
};
};
};
Then show it via
cutRsc ["MyText","PLAIN"]
you can show pictures via
class RscPicture
{
type=0;
idc=-1;
style=48;
colorBackground[]={0,0,0,0};
colorText[]={1,1,1,1};
font="tahomaB24";
sizeEx=0;
};
....
.... class Picture : RscPicture {
idc=xyz
text="Name of the Picture.jpg"
.....
Or you can put this all in a Dialog like this
class RscText
{
type=0;
idc=-1;
style=0;
h=0.080000;
colorBackground[]={0,0,0,0};
colorText[]={0.000000,1.000000,1.000000,1.000000};
font="tahomaB24";
sizeEx=0.040000;
};
class RscButton
{
type=1;
style=2;
w=0.160000;
h=0.060000;
colorText[]={0.080000,0.080000,0.120000,1};
font="tahomaB24";
sizeEx=0.020000;
default=0;
soundPush[]={"ui\ui_ok",0.200000,1};
soundClick[]={"",0.200000,1};
soundEscape[]={"ui\ui_cc",0.200000,1};
};
class MyText
{
idd=1;
movingEnable=0;
controls[]={"Text","Button"};
class Text : RscText
{
idc=303;
x=0.300000;
y=0.180000;
w=0.400000;
text="Hello World!";
};
class Button : RscButton
{
idc=1;
w=0.0;
h=0.0;
x=-0.5;
y=-0.5;
text="";
default=1;
};
};
But the it shows you a cursor.
Hope that helps.