Its not really clear what your asking for, but here's a few things I think might help.
If you want loads of soldiers ot have the same face you need to put in each of the unit's init fields the following:
this setFace "YourFaceName"
Alternatively, you could do it for them all in the init.sqs if you wan to keep te units' init feilds free. But, this way, you'll have to name all the units.
If you're trying to put custom faces in OFP, you'll need to write a config for the addon. It would go something like this:-
class CfgPatches
{
class Faces//defining the type of addon
{
units[] = {};
weapons[] = {};
requiredVersion = 1.20;
};
};
class CfgFaces
{
class YourClassName
{
name="TheNameToBeDisplayedInOFP";
texture="\YourFolderName\YourCustomFaceFileName.jpg";
east=1;
west=1;// so it will appear on all sides
};
};
};
OK. That's pretty much everything on how to do what I think you're trying to do :hmm: