I'm getting an error when I try to use my resources in game. Can anyone tell me what wrong with my description.ext?
the error, btw is: Resource title not found
....
#define CT_STATIC 0
// Static styles
#define ST_LEFT 0Â Â Â Â Â Â //text is aligned to the left of the control
#define ST_RIGHT 1Â Â Â Â Â Â //text aligned to right
#define ST_CENTER 2Â Â Â Â Â Â //text aligned in the center
#define ST_UP 3Â Â Â Â Â Â Â Â Â //
#define ST_DOWN 4Â Â Â Â Â Â //Don't know what these do (perhaps need to be combined with other styles?)
#define ST_VCENTER 5Â Â Â Â Â Â //
#define ST_SINGLE 0Â Â Â Â Â Â //same as ST_LEFT (?)
#define ST_MULTI 16Â Â Â Â Â Â //control is outlined with a line (color = text color)
#define ST_PICTURE 48Â Â Â Â Â Â //picture is displayed instead of text. "text" property is used to point to picture file
#define ST_FRAME 64Â Â Â Â Â Â //control becomes a frame. Background is clear and text is placed along the top edge of the control. Control is outlined with text color (as in ST_MULTI)
#define ST_HUD_BACKGROUND 128Â Â Â //control is rounded and outlined (just like a hint box)
#define ST_TILE_PICTURE 144Â Â Â //same as ST_PICTURE (?)
#define ST_WITH_RECT 160Â Â Â //same as ST_FRAME only background is clear (?)
#define ST_LINE 176Â Â Â Â Â Â //a line is drawn between the top left and bottom right of the control (color = text color). Background is clear. Control can still have text, however
#define ST_SHADOW 256Â Â Â Â Â Â //text is given a shadow
#define ST_NO_RECT 512Â Â Â Â Â Â //Don't know what this does
class RscTextShadow
{
   type = CT_STATIC;
   style = ST_LEFT + ST_SHADOW;
   idc = -1;
   colorBackground[] = {0, 0, 0, 0};
   colorText[] = {1, 0, , 1};
   font = "SteelfishB64CE";
   size = 1.0;
   lineSpacing = 1.0;
};
class RscText
{
   type = CT_STATIC;
   style = ST_LEFT;
   idc = -1;
   colorBackground[] = {0, 0, 0, 0};
   colorText[] = {1, 1, 1, 1};
   font = "SteelfishB64CE";
   size = 1.0;
   lineSpacing = 1.0;
};
class RscHudBackground
{
   type = CT_STATIC;
   style = ST_LEFT + ST_HUD_BACKGROUND;
   idc = -1;
   colorBackground[] = {0,0,0,0.75};
   colorText[] = {1,1,1,1};
   font = "SteelfishB64CE";
   size = 1;
   lineSpacing = 1.0;
   text = "";
};
  Â
class RscTitles
{
  Â
   class ObjectivesResourceAllComp
   {
      idd=-1;
      movingEnable=false;
      duration=25;
      name="Objectives Resource";
      controls[]={"objective_frame","objective_title","objective_one","objective_two","objective_three","objective_four"};
     Â
      class objective_frame : RscHudBackground
      {
         x = 0.8; y = 0.02;
         w = 0.18; h = 0.34;
      };
      class objective_title : RscTextShadow
      {
         style = ST_LEFT + ST_SHADOW;
         x = 0.835; y = 0.04;
         w = 0.18; h = 0.05;
         text = "Objectives";
      };
      class objective_one : RscText
      {
         x = 0.82; y = 0.10;
         w = 0.18; h = 0.05;
         text = "Obj 1: Completed";
      };
      class objective_two : RscText
      {
         x = 0.82; y = 0.16;
         w = 0.18; h = 0.05;
         text = "Obj 2: Completed";
      };
     Â
      class objective_three: RscText
      {
         x = 0.82; y = 0.22;
         w = 0.18; h = 0.05;
         text = "Obj 3: Completed";
      };
  Â
      class objective_four : RscText
      {
         x = 0.82; y = 0.28;
         w = 0.18; h = 0.05;
         text = "Obj 4: Completed";
      };
   };
   class HealthBar100
   {
      idd=-1;
      movingEnable=false;
      duration=99999^99999;
      name="HealthBar100";
      controls[]={"BarColor100","BarOutline100"};
     Â
      class BarColor100 : RscText
      {
         x = 0.01; y = 0.08;
         w = 0.1; h = 0.03;
         colorBackground[] = {0,1,0,1};
         text = "";
      };
      class BarOutline100
      {
         type = CT_STATIC;
         style = ST_FRAME;
         idc = -1;
         x = 0.01; y = 0.08;
         w = 0.1; h = 0.03;
         colorBackground[] = {0,0,0,0};
         colorText[] = {1,1,1,1};
         font = "SteelfishB64CE";
         size = 1;
         lineSpacing = 1.0;
         text = "";
      };
   };
   class HealthBar90
   {
      idd=-1;
      movingEnable=false;
      duration=99999^99999;
      name="HealthBar90";
      controls[]={"BarColor90","BarOutline90"};
     Â
      class BarColor90 : RscText
      {
         x = 0.01; y = 0.08
         w = 0.09; h = 0.03;
         colorBackground[] = {0,1,0,1};
         text = "";
      };
      class BarOutline90
      {
         type = CT_STATIC;
         style = ST_FRAME;
         idc = -1;
         x = 0.01; y = 0.08
         w = 0.1; h = 0.03;
         colorBackground[] = {0,0,0,0};
         colorText[] = {1,1,1,1};
         font = "SteelfishB64CE";
         size = 1;
         lineSpacing = 1.0;
         text = "";
      };
   };
   class HealthBar80
   {
      idd=-1;
      movingEnable=false;
      duration=99999^99999;
      name="HealthBar80";
      controls[]={"BarColor80","BarOutline80"};
     Â
      class BarColor80 : RscText
      {
         x = 0.01; y = 0.08
         w = 0.08; h = 0.03;
         colorBackground[] = {0,1,0,1};
         text = "";
      };
      class BarOutline80
      {
         type = CT_STATIC;
         style = ST_FRAME;
         idc = -1;
         x = 0.01; y = 0.08
         w = 0.1; h = 0.03;
         colorBackground[] = {0,0,0,0};
         colorText[] = {1,1,1,1};
         font = "SteelfishB64CE";
         size = 1;
         lineSpacing = 1.0;
         text = "";
      };
   };
   class HealthBar70
   {
      idd=-1;
      movingEnable=false;
      duration=99999^99999;
      name="HealthBar70";
      controls[]={"BarColor70","BarOutline70"};
     Â
      class BarColor70 : RscText
      {
         x = 0.01; y = 0.08
         w = 0.70; h = 0.03;
         colorBackground[] = {0,1,0,1};
         text = "";
      };
      class BarOutline70
      {
         type = CT_STATIC;
         style = ST_FRAME;
         idc = -1;
         x = 0.01; y = 0.08
         w = 0.1; h = 0.03;
         colorBackground[] = {0,0,0,0};
         colorText[] = {1,1,1,1};
         font = "SteelfishB64CE";
         size = 1;
         lineSpacing = 1.0;
         text = "";
      };
   };
   class HealthBar60
   {
      idd=-1;
      movingEnable=false;
      duration=99999^99999;
      name="HealthBar60";
      controls[]={"BarColor60","BarOutline60"};
     Â
      class BarColor60 : RscText
      {
         x = 0.01; y = 0.08
         w = 0.06; h = 0.03;
         colorBackground[] = {0,1,1,1};
         text = "";
      };
      class BarOutline60
      {
         type = CT_STATIC;
         style = ST_FRAME;
         idc = -1;
         x = 0.01; y = 0.08
         w = 0.1; h = 0.03;
         colorBackground[] = {0,0,0,0};
         colorText[] = {1,1,1,1};
         font = "SteelfishB64CE";
         size = 1;
         lineSpacing = 1.0;
         text = "";
      };
   };
   class HealthBar50
   {
      idd=-1;
      movingEnable=false;
      duration=99999^99999;
      name="HealthBar50";
      controls[]={"BarColor50","BarOutline50"};
     Â
      class BarColor50 : RscText
      {
         x = 0.01; y = 0.08
         w = 0.05; h = 0.03;
         colorBackground[] = {0,1,1,1};
         text = "";
      };
      class BarOutline50
      {
         type = CT_STATIC;
         style = ST_FRAME;
         idc = -1;
         x = 0.01; y = 0.08
         w = 0.1; h = 0.03;
         colorBackground[] = {0,0,0,0};
         colorText[] = {1,1,1,1};
         font = "SteelfishB64CE";
         size = 1;
         lineSpacing = 1.0;
         text = "";
      };
   };
   class HealthBar40
   {
      idd=-1;
      movingEnable=false;
      duration=99999^99999;
      name="HealthBar40";
      controls[]={"BarColor40","BarOutline40"};
     Â
      class BarColor40 : RscText
      {
         x = 0.01; y = 0.08
         w = 0.04; h = 0.03;
         colorBackground[] = {0,1,1,1};
         text = "";
      };
      class BarOutline40
      {
         type = CT_STATIC;
         style = ST_FRAME;
         idc = -1;
         x = 0.01; y = 0.08
         w = 0.1; h = 0.03;
         colorBackground[] = {0,0,0,0};
         colorText[] = {1,1,1,1};
         font = "SteelfishB64CE";
         size = 1;
         lineSpacing = 1.0;
         text = "";
      };
   };
  Â
   class HealthBar30
   {
      idd=-1;
      movingEnable=false;
      duration=99999^99999;
      name="HealthBar30";
      controls[]={"BarColor30","BarOutline30"};
     Â
      class BarColor30 : RscText
      {
         x = 0.01; y = 0.08
         w = 0.03; h = 0.03;
         colorBackground[] = {1,0,0,1};
         text = "";
      };
      class BarOutline30
      {
         type = CT_STATIC;
         style = ST_FRAME;
         idc = -1;
         x = 0.01; y = 0.08
         w = 0.1; h = 0.03;
         colorBackground[] = {0,0,0,0};
         colorText[] = {1,1,1,1};
         font = "SteelfishB64CE";
         size = 1;
         lineSpacing = 1.0;
         text = "";
      };
   };
   class HealthBar20
   {
      idd=-1;
      movingEnable=false;
      duration=99999^99999;
      name="HealthBar20";
      controls[]={"BarColor20","BarOutline20"};
     Â
      class BarColor20 : RscText
      {
         x = 0.01; y = 0.08
         w = 0.02; h = 0.03;
         colorBackground[] = {1,0,0,1};
         text = "";
      };
      class BarOutline20
      {
         type = CT_STATIC;
         style = ST_FRAME;
         idc = -1;
         x = 0.01; y = 0.08
         w = 0.1; h = 0.03;
         colorBackground[] = {0,0,0,0};
         colorText[] = {1,1,1,1};
         font = "SteelfishB64CE";
         size = 1;
         lineSpacing = 1.0;
         text = "";
      };
   };
   class HealthBar10
   {
      idd=-1;
      movingEnable=false;
      duration=99999^99999;
      name="HealthBar10";
      controls[]={"BarColor10","BarOutline10"};
     Â
      class BarColor10 : RscText
      {
         x = 0.01; y = 0.08
         w = 0.01; h = 0.03;
         colorBackground[] = {1,0,0,1};
         text = "";
      };
      class BarOutline10
      {
         type = CT_STATIC;
         style = ST_FRAME;
         idc = -1;
         x = 0.01; y = 0.08
         w = 0.1; h = 0.03;
         colorBackground[] = {0,0,0,0};
         colorText[] = {1,1,1,1};
         font = "SteelfishB64CE";
         size = 1;
         lineSpacing = 1.0;
         text = "";
      };
   };
   class HealthBar0
   {
      idd=-1;
      movingEnable=false;
      duration=99999^99999;
      name="HealthBar0";
      controls[]={"BarColor0","BarOutline0"};
     Â
      class BarColor0 : RscText
      {
         x = 0.01; y = 0.08
         w = 0.00; h = 0.03;
         colorBackground[] = {1,0,0,1};
         text = "";
      };
      class BarOutline0
      {
         type = CT_STATIC;
         style = ST_FRAME;
         idc = -1;
         x = 0.01; y = 0.08
         w = 0.1; h = 0.03;
         colorBackground[] = {0,0,0,0};
         colorText[] = {1,1,1,1};
         font = "SteelfishB64CE";
         size = 1;
         lineSpacing = 1.0;
         text = "";
      };
   };
};