Hey everyone, just a quick guide on how to get the chopper crew with masks to work.
First put your crew of 4 men in the editor (im using 4 as the script is only for 4 men just now).
[Important]
Blue is the name of the unit. Red is the init line you need of each named unit.
Pilot_Visor:
this setIdentity "Pilot_Visor"
Crew_Chief:
this setIdentity "Crew_Skull"
Door_Gunner:
this setIdentity "Door_Gunner"
Rear_Gunner:
this setIdentity "Rear_Gunner"
Now open up notepad or any other word editing program you use and copy past the below on to it:
////////////////////////Script_by_DarkXess////////////////////////
class CfgIdentities
{
class Pilot_Visor //Name this what you want to help remember which helmet it is
{
name="Pilot 1"; //Name this what you want also
face="Face03"; //I just picked different faces for the heck of it
glasses="Tactical_Sunglass_visor"; //This is DaveyGary's helmet type
speaker="Male01EN"; //I changed the voice for each one
pitch=1.0;
};
class Crew_Skull
{
name="Crew Skull";
face="Face61";
glasses="Tactical_Sunglass_pilot";
speaker="Male04EN";
pitch=1.0;
};
class Crew_Chief
{
name="Crew Chief";
face="Face53";
glasses="Tactical_Sunglass_crew";
speaker="Male02EN";
pitch=1.0;
};
class Door_Gunner
{
name="Door Gunner";
face="Face87";
glasses="Tactical_Sunglass_crew";
speaker="Male05EN";
pitch=1.0;
};
class Rear_Gunner
{
name="Rear Gunner";
face="Face82";
glasses="Tactical_Sunglass_crew";
speaker="Male03EN";
pitch=1.0;
}
};
Save this as "Description.ext" then your all done. Preview the mission and you will now see
your crew members with face different type of facemasks according to the script above.
The parts in the description.ext called "
face" and "
voice" you can put your own face's
and voice's from the game if you know what they are and also if you do wish to change them.
Link's to helpful pages:
CfgIdentities (anyone know the voices link then please let me know, thanks)