Hi Grumpy,
To add aircraft to the available planes ina campaign you need to edit whats known as the TechTree in any given campaign file.
If you navigate to the campaign folder inside CFS3 or any of the various Addon games such as MAW, ETO you will see .xml files with names like:
fortress europa.xml (stock CFS3)
Attack in the west.xml (ETO)
If you open up one of these files using notepad and scroll down about half way you will see the section relating to the techtree. below is the techtree from the stock CFS3 campaign file fortress europa.xml.
you can see the various aircraft types listed, to add more just copy one section of the file and then put in teh model name of the plane you want to use, and put in teh date you wish to see the plane become available for use.
<TechTree>
<Aircraft Type="BF_109G_6">
<Date Month="2" Year="1943"/>
</Aircraft>
<Aircraft Type="BF_109G_10">
<Date Month="4" Year="1944"/>
</Aircraft>
<Aircraft Type="DO_335A_1">
<Date Month="2" Year="1945"/>
</Aircraft>
<Aircraft Type="DO_335B_2">
<Date Month="3" Year="1945"/>
</Aircraft>
<Aircraft Type="FW_190A_5">
<Date Month="2" Year="1943"/>
</Aircraft>
<Aircraft Type="FW_190A_8">
<Date Month="11" Year="1943"/>
</Aircraft>
<Aircraft Type="GO_229A">
<Date Month="7" Year="1945"/>
</Aircraft>
<Aircraft Type="JU_88A_4">
<Date Month="5" Year="1940"/>
</Aircraft>
<Aircraft Type="JU_88C_6">
<Date Month="6" Year="1942"/>
</Aircraft>
<Aircraft Type="JU_88P_4">
<Date Month="4" Year="1943"/>
</Aircraft>
<Aircraft Type="Me_262A_1A">
<Date Month="9" Year="1944"/>
</Aircraft>
<Aircraft Type="Me_262A_1A_u4">
<Date Month="10" Year="1944"/>
</Aircraft>
<Aircraft Type="Me_262A_2A">
<Date Month="12" Year="1944"/>
</Aircraft>
<Aircraft Type="B_26C">
<Date Month="11" Year="1942"/>
</Aircraft>
<Aircraft Type="B_26G">
<Date Month="2" Year="1944"/>
</Aircraft>
<Aircraft Type="P_38J">
<Date Month="8" Year="1943"/>
</Aircraft>
<Aircraft Type="P_38L">
<Date Month="6" Year="1944"/>
</Aircraft>
<Aircraft Type="P_47D">
<Date Month="3" Year="1943"/>
</Aircraft>
<Aircraft Type="P_47D_25">
<Date Month="5" Year="1944"/>
</Aircraft>
<Aircraft Type="P_51B">
<Date Month="11" Year="1943"/>
</Aircraft>
<Aircraft Type="P_51D">
<Date Month="5" Year="1944"/>
</Aircraft>
<Aircraft Type="P_55A">
<Date Month="12" Year="1944"/>
</Aircraft>
<Aircraft Type="P_80A">
<Date Month="4" Year="1945"/>
</Aircraft>
<Aircraft Type="Spitfire_IXC">
<Date Month="6" Year="1942"/>
</Aircraft>
<Aircraft Type="Spitfire_IXE">
<Date Month="9" Year="1944"/>
</Aircraft>
<Aircraft Type="Tempest_MKV">
<Date Month="5" Year="1944"/>
</Aircraft>
<Aircraft Type="Typhoon_MkIB">
<Date Month="9" Year="1941"/>
</Aircraft>
<Aircraft Type="Vampire_MkI">
<Date Month="5" Year="1945"/>
</Aircraft>
<Aircraft Type="B_25C">
<Date Month="4" Year="1942"/>
</Aircraft>
<Aircraft Type="B_25H">
<Date Month="7" Year="1943"/>
</Aircraft>
<Aircraft Type="B_25J">
<Date Month="11" Year="1943"/>
</Aircraft>
<Aircraft Type="Mosquito_MkVI">
<Date Month="5" Year="1943"/>
</Aircraft>
<Aircraft Type="Mosquito_MkIV">
<Date Month="5" Year="1942"/>
</Aircraft>
<Aircraft Type="Mosquito_MkXVIII">
<Date Month="11" Year="1943"/>
</Aircraft>
</TechTree>
you can find the model names by looking for the M3D files found inside each of the various aircraft folders.
example ETO_Hur_Mk2.M3D is the model file for the ETO Hurricane MkII, simply write in the name like this,
<Aircraft Type="ETO_Hur_Mk2">
<Date Month="1" Year="1941"/>
</Aircraft>
then copy your new entry into the techtree.
open up a couple of the ETO or MAW campaign files and you will soon see how the structure works.
hope this helps,
regards Rob.