Ok, I noticed a few things that might be causing you trouble.
1)In the SectionsInherit section, you have this:
sectionsInherit=Head
I think it has to have quotes, like this:
sectionsInherit="Head"
Do this for all the other SectionsInherit
2)In the CfgModels section you have this:
class Officer: Man {
sections[] = { "head injury",
"body injury",
"l arm injury",
"r arm injury",
"p arm injury",
"l leg injury",
"r leg injury",
"p leg injury",
, "hlava",
"krk",
"zasleh",
"helmet_on_front",
"helmet_on_back",
"helmet_on_side",
"helmet_on_inside",
"helmet_on_straps",
"helmet_off_front",
"helmet_off_back",
"helmet_off_side",
"helmet_off_inside",
"clan",
"clan_sign",
"armpatch"
};
sectionsInherit=Head;
};
First off, you have a comma here:
, "hlava",
remove it
Second, you have classed it as an officer, I believe the class needs to be the same name as the name you defined above, so instead of officer, it should be:
class RCIROfficer: Man {
sections[] = { "head injury",
"body injury",
"l arm injury",
"r arm injury",
"p arm injury",
"l leg injury",
"r leg injury",
"p leg injury",
"hlava",
"krk",
"zasleh",
"helmet_on_front",
"helmet_on_back",
"helmet_on_side",
"helmet_on_inside",
"helmet_on_straps",
"helmet_off_front",
"helmet_off_back",
"helmet_off_side",
"helmet_off_inside",
"clan",
"clan_sign",
"armpatch"
};
sectionsInherit="Head";
};
You will need to do this for every unit you have listed here:
units[] = { "RCIROfficer", "RCIRRifleman", "RCIRGrenadier", "RCIRLMGunner", "RCIRAT4Gunner", "RCIRMedic", "RCIRMMGunner", "RCIRMarksman" };
I hope that helps!