Jump to content
Sign in to follow this  
laverniusregalis

What's wrong with my description.ext?

Recommended Posts

It's probably something stupid I overlooked, but I just started working on a mission and wanted to give each soldier an identity. When the description.ext is in my mission folder, I get an error which tells me I'm missing a ' } ' at one of the last lines. I didn't get this error before trying to add identities, what's going on?

http://pastebin.com/V6V1Mwe8

Share this post


Link to post
Share on other sites

Try this. Change is in red bold...

overviewText = "Lead your elite squad on a night raid on a CSAT port.";
overviewTextLocked = "File classified.";
overviewPicture = "";
author = "Strelnikov";

class CfgDebriefing
{  
class End1
{
	title = "Outstanding success";
	subtitle = "";
	description = "Your team's heroic efforts have ensured that the CSAT's presence on the West side of Altis has been crippled. Well done.";
	pictureBackground = "";
	picture = "b_inf";
	pictureColor[] = {0.0,0.3,0.6,1};
};
};

class Weapons
{
 class arifle_MXM_TWSS_bipod_mzls_F     {count = 1;};
 class LMG_Mk200_ARCO_bipod_F           {count = 1;};
};

class Magazines
{
 class 200Rnd_65x39_cased_Box   {count = 4;};
 class 20Rnd_762x45_mag         {count = 6;};
};

class CfgIdentities
{
   class Stranger
   {
       name = "Regalis";
       nameSound = "Stranger";
       face="GreekHead_A3_02";
glasses="None";
speaker="Male01GRE";
pitch=1.0;
   [b][color="#FF0000"]};[/color][/b]
   class Nomad
   {
       name = "Octavius";
       nameSound = "Nomad";
       face="GreekHead_A3_09";
glasses="None";
speaker="Male01ENG";
pitch=1.0;
   };
};

onLoadName = "JTAC";

OnLoadMission = "Sneak attack at night.";

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
Sign in to follow this  

×