Home   Help Search Login Register  

Author Topic: Description.ext Identity Crisis  (Read 445 times)

0 Members and 1 Guest are viewing this topic.

Drozdov

  • Guest
Description.ext Identity Crisis
« on: 27 Aug 2003, 19:34:13 »
Quote
class CfgIdentities
{
class MarekV
{
name = "Marek Volchovsky";
face = "faceR03";
glasses="None";
speaker = "vadim";
pitch = 1.05;
{
class MilenB
{
name = "Milen Balakov";
face = "face11";
glasses="None";
speaker = "ruslan";
pitch = 0.96;
{
class PetrL
{
name = "Petr Lubos";
face = "face42";
glasses="None";
speaker = "sergey";
pitch = 1.07;

I'm trying to give these three people names (and voices) yet this syntax causes a desktop bugger-up in my mission. What am I doing wrong?

Offline KJAM

  • Contributing Member
  • **
  • Why Me, Whats it For?
    • Nightstalker mod
Re:Description.ext Identity Crisis
« Reply #1 on: 27 Aug 2003, 20:12:20 »
arent you missing the } 's at the end of each identity, e.g
class CfgIdentities
{
class MyCharacter
{
name = "John Smith";
face = "Face12";
glasses="None";
speaker = "Adam";
pitch = 1.00;
};

but for multiple it MAY be something like:

class CfgIdentities
{
class MyCharacter
{
name = "John Smith";
face = "Face12";
glasses="None";
speaker = "Adam";
pitch = 1.00;
}
class CfgIdentities
{
class MyCharacter2
{
name = "John Wayne";
face = "Face12";
glasses="None";
speaker = "Adam";
pitch = 1.00;
};

im no expert so that MAY NOT work but im sure its something similar to that, maybe one of the scripting gods will help you

Drozdov

  • Guest
Re:Description.ext Identity Crisis
« Reply #2 on: 27 Aug 2003, 20:33:09 »
Quote
class CfgIdentities
{
class MarekV
{
name = "Marek Volchovsky";
face = "faceR03";
glasses="None";
speaker = "vadim";
pitch = 1.05;
};
class MilenB
{
name = "Milen Balakov";
face = "face11";
glasses="None";
speaker = "ruslan";
pitch = 0.96;
};
class PetrL
{
name = "Petr Lubos";
face = "face42";
glasses="None";
speaker = "sergey";
pitch = 1.07;
};

That worked, thanks man :D