In my intro I want a custom logo to be displayed. In my intro-script I use
titlersc["logotje","plain"]
to display the logo. However when I play the intro, and the logo the logo is to be displayed (ie the above script line is executed) Flashpoint crashes and returns to windows without leaving an error. What is wrong? How do I show the logo?
----description.ext----
onLoadIntro = " "
onLoadIntroTime = false
onLoadMission = " "
onLoadMissionTime = false
class CfgSounds
{
sounds[] = { regen_binnen, regen_buiten, hit_snd, ohmygod, radio, hit_snd2 };
class regen_binnen
{
name = "regen_binnen";
sound[] = {"regen_binnen.ogg", db+50, 1.0};
titles[] =
{
0, $STRM_regenbinnen
};
};
class regen_buiten
{
name = "regen_buiten";
sound[] = {"regen_buiten.ogg", db+80, 1.0};
titles[] =
{
0, $STRM_regenbuiten
};
};
class hit_snd
{
name = "hit_snd";
sound[] = {"hit_snd.ogg", db+50, 1.0};
titles[] =
{
0, $STRM_hit_snd
};
};
class ohmygod
{
name = "ohmygod";
sound[] = {"ohmygod.ogg", db+50, 1.0};
titles[] =
{
0, $STRM_ohmygod
};
};
class radio
{
name = "radio";
sound[] = {"radio.ogg", db+50, 1.0};
titles[] =
{
0, $STRM_radio
};
};
class hit_snd2
{
name = "hit_snd2";
sound[] = {"hit_snd2.ogg", db+50, 1.0};
titles[] =
{
0, $STRM_hit_snd2
};
};
};
class RscTitles
{
titles[] = {logotje};
class logotje
{
idd = -1;
movingEnable = 0;
duration = 3;
fadein = 0;
name = "logotje";
controls[] = {"logotje"};
class logotje
{
type = 0;
idc = -1;
style = 48;
colorBackground[] = {0, 0, 0, 0};
colorText[] = {1, 1, 1, 1};
font = "AudreysHandI48";
size = 1;
text = "logotje.paa";
x = 0; y = 0; w = 1; h = 1;
};
};
};