Jump to content
Sign in to follow this  
PLRSniper

I need help to make soldier

Recommended Posts

I don't Know where to put this topic, if in O2 or Cpp ...

Anyway I have edited a Soldier and when I play and enter in any vehicle I always see a lips, glasses and Helm. tounge.gif

All soldier have same face, I selected other face in my profile but doesn't workis with this.

Do you know what is the problem ?? confused.gif

(There's no head, glasses, helm, lips, etc in "View Pilot" only hands and bodys and Proxys as all original models)

Thanks

Share this post


Link to post
Share on other sites

Selections must be set properly on model for random faces, cfg models should be like this....

class CfgModels

{

class Default

{

sections[] = {};

sectionsInherit="";

};

class Head: Default

{

sections[] =

{

"osobnost",

"brejle"

};

};

class Man: Default{};

class your model name here: Default

{

sections[] =

{

"head injury","body injury",

"l arm injury","r arm injury","p arm injury",

"l leg injury","r leg injury","p leg injury",

"medic",

"hlava",

"krk",

"zasleh"

};

sectionsInherit=Head;

};

};

Share this post


Link to post
Share on other sites

Rage,

do as soul_assassin says,go read select this tut on

the osobnost thingy,

then in your cpp file

add this section between cfgpatches and cfgvehicles.

CfgModels

{

class Default {};

class Man: Default {};

class nameofyourmodel: Man {};

};

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  

×