Hi!

Thanks for downloading my F-16 desert flight suit mod. If you notice any texture issues or encounter any problems please report them on the mod page or the forum post. This mod allows you to change the F-16 pilot flight suit from the default green to desert tan with tan gloves or green gloves, black with black gloves or green gloves, gray, blue, or red. This is livery specific and applies to the pilot in external view or the first person pilot body toggled with Rshift-P. 

Note 1: This mod will only work on liveries that use the new F-16 pilot model.

To install the textures:

1. Navigate to the F-16 livery folder that you want to change the flight suit color. I recommend making a separate copy of the livery folder(s) you are modifying and rename the folder(s) to something like "livery name - Desert flight suit" That way you have separate jets in DCS and won't have to switch out textures constantly or inadvertently break a working livery. 

2. In my flight suit mod, decide which color you want. Open that folder and copy/paste the textures into the F-16 livery folder of your choice.

3. In the F-16 livery folder open description.lua in note pad and find these lines:
	{"Pilot_F16_Suit",	DIFFUSE				,	"pilot_f16_suit", true};
	{"Pilot_F16_Suit",	NORMAL_MAP			,	"pilot_f16_suit_normal", true};
	{"Pilot_F16_Suit",	SPECULAR			,	"pilot_f16_suit_roughmet", true};

	{"Pilot_F16_Details",	DIFFUSE				,	"Pilot_F16_Details", true};
	{"Pilot_F16_Details",	NORMAL_MAP			,	"Pilot_F16_Details_normal", true};
	{"Pilot_F16_Details",	SPECULAR			,	"Pilot_F16_Details_roughmet", true};

4. Change the "true" to "false" in the diffuse line.
	{"Pilot_F16_Suit",	DIFFUSE				,	"pilot_f16_suit", false};
	{"Pilot_F16_Suit",	NORMAL_MAP			,	"pilot_f16_suit_normal", true};
	{"Pilot_F16_Suit",	SPECULAR			,	"pilot_f16_suit_roughmet", true};

	{"Pilot_F16_Details",	DIFFUSE				,	"Pilot_F16_Details", false};
	{"Pilot_F16_Details",	NORMAL_MAP			,	"Pilot_F16_Details_normal", true};
	{"Pilot_F16_Details",	SPECULAR			,	"Pilot_F16_Details_roughmet", true};

5. Copy and paste these lines into description.lua 

--First Person Pilot

	{"Pilot_F16_FP_SuitBot",       DIFFUSE                  	,     	"Pilot_F16_FP_SuitBot", false};
	{"Pilot_F16_FP_SuitBot",       NORMAL_MAP                      	,     	"Pilot_F16_FP_SuitBot_Normal", true};
	{"Pilot_F16_FP_SuitBot",       SPECULAR                        	,     	"Pilot_F16_FP_SuitBot_RoughMet", true};
 
	{"Pilot_F16_FP_SuitTop",       DIFFUSE                  	,     	"Pilot_F16_FP_SuitTop", false};
	{"Pilot_F16_FP_SuitTop",       NORMAL_MAP                      	,     	"Pilot_F16_FP_SuitTop_Normal", true};
	{"Pilot_F16_FP_SuitTop",       SPECULAR                        	,     	"Pilot_F16_FP_SuitTop_RoughMet", true};

	{"Pilot_F16_FP_Harness",       DIFFUSE                  	,     	"Pilot_F16_FP_Harness", false};
	{"Pilot_F16_FP_Harness",       NORMAL_MAP                      	,     	"Pilot_F16_FP_Harness_Normal", true};
	{"Pilot_F16_FP_Harness",       SPECULAR                        	,     	"Pilot_F16_FP_Harness_RoughMet", true};

	{"Pilot_F16_FP_Details",       DIFFUSE                  	,     	"Pilot_F16_FP_Details", false};
	{"Pilot_F16_FP_Details",       NORMAL_MAP                      	,     	"Pilot_F16_FP_Details_Normal", true};
	{"Pilot_F16_FP_Details",       SPECULAR                        	,     	"Pilot_F16_FP_Details_RoughMet", true};

	{"Pilot_F18_FP_Details2",	DIFFUSE				,	"Pilot_F16_FP_Details2", false};
	{"Pilot_F18_FP_Details2",	NORMAL_MAP			,	"Pilot_F16_FP_Details2_normal", true};
	{"Pilot_F18_FP_Details2",	SPECULAR			,	"Pilot_F16_FP_Details2_roughmet", true};

6. I have included new 2 versions of the default pilot patch. 1 for desert tan flight suits and 1 for the other colors. If you don't want them or if your livery already has custom pilot patches skip this step. 
Find these lines in the description.lua
	{"pilot_F16_patch",	DIFFUSE				,	"pilot_f16_patch", true};
	{"pilot_F16_patch",	NORMAL_MAP			,	"pilot_f16_patch_nm", true};
	{"pilot_F16_patch",	SPECULAR			,	"pilot_f16_patch_roughmet", true};

Change all to false.
	{"pilot_F16_patch",	DIFFUSE				,	"pilot_f16_patch", false};
	{"pilot_F16_patch",	NORMAL_MAP			,	"pilot_f16_patch_nm", false};
	{"pilot_F16_patch",	SPECULAR			,	"pilot_f16_patch_roughmet", false}; 

7. In description.lua find this line. It is usually at the very bottom. 
	name = "your livery name"
 	example: name = "Foxtrot1's super cool livery"

8. Change it to
	name = "your livery name - Color of flight suit"
	example: name = "Foxtrot1's super cool livery - Black flight suit"

9. Save description.lua

10. Load DCS and try it out.