Jump to content
[lol]clan killer bee

How to add extra RscTitles

Recommended Posts

Hi guys I need some help with something I'm struggling with .

 

I'm making a mission and in the description.ext I got the following for my .paa

 

 

//////////////////////////////////////////////////////////////
//////////////// RscTitles ///////////////////////////////////
//////////////////////////////////////////////////////////////
//Change the  x and the Y you change the place on the screen//
//Change the W and the H you change the size of the picture //
//////////////////////////////////////////////////////////////
///To cover the whole screen, you should use x=safeZoneX, y=safeZoneY, w=safeZoneW, and h=safeZoneH./////


class RscTitles

{
 titles[] = {"mission","KillerBee","lolklein"};

 class mission {
   idd = -1;
   movingEnable = 0;
   duration = 4;  
   fadein = 2;
   fadeout = 2;
   name="mission";

   controls[]={"Picture"};

   class Picture {
     x=0.0; y=0.0; w=1.0; h=1.0;
     text="images\mission.paa";
     sizeEx = -1;
     type=0;
     idc=-1;
     style=48;
     colorBackground[]={0,0,0,0};
     colorText[]={1,1,1,1};
     font="Bitstream";
   };
 };

 class KillerBee {
   idd = -1;
   movingEnable = 0;
   duration = 4;  
   fadein = 2;
   fadeout = 2;
   name="KillerBee";

   controls[]={"Picture"};

   class Picture {
     x=0.99; y=0.99; w=0.25; h=0.25;
     text="images\KillerBee.paa";
     sizeEx = -1;
     type=0;
     idc=-1;
     style=48;
     colorBackground[]={0,0,0,0};
     colorText[]={1,1,1,1};
     font="Bitstream";
   };
 };

 class lolklein {
   idd = -1;
   movingEnable = 0;
   duration = 4;  
   fadein = 2;
   fadeout = 2;
   name="lolklein";

   controls[]={"Picture"};

   class Picture {
     x=0.0; y=0.0; w=1.0; h=1.0;
     text="images\lolklein.paa";
     sizeEx = -1;
     type=0;
     idc=-1;
     style=48;
     colorBackground[]={0,0,0,0};
     colorText[]={1,1,1,1};
     font="Bitstream";
   };
 };
};
 

 

Now I wanted to add the REVIVE-Pyschos to my mission, but here starts the problem.

One of the lines I need to implement in the discription.ext is the following

 

 

class RscTitles {
    #include "ais_injury\dialogs\rscTitlesAIS.hpp"
};

 

When I did that I did get the message that is already existed as it does.

Sofar I understood it.

 

I have tried to implement the

{
    #include "ais_injury\dialogs\rscTitlesAIS.hpp"
};

 

 

all kinds of ways also in the one I already had no succes  !

Got a bunch of errors been busy for 3 days and gave up now  kindda.

So maybe someone knows how to solve this little pain in the neck issue.

 

With regards,

KillerBee

 

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

×