There is a "pylon_null" in the pylons folder, but I've always had trouble with it. So I tend to add a droptank as follows (for the stock Spit)
In your xdp file, go to loadouts:
<Loadouts>
<Loadout Name="Clean"/>
<Loadout Name="(2)250lb Bombs">
<Hardpoint ID="1" PylonType="pylon_Spit_c_3" PayloadType="B_250lb" Quantity="1"/>
<Hardpoint ID="2" PylonType="pylon_Spit_c_4" PayloadType="B_250lb" Quantity="1"/>
</Loadout>
<Loadout Name="(1)500lb Bomb">
<Hardpoint ID="0" PylonType="pylon_Spit_c_0" PayloadType="B_500lb" Quantity="1"/>
</Loadout>
<Loadout Name="(1)1000lb Bomb">
<Hardpoint ID="0" PylonType="pylon_Spit_c_0" PayloadType="B_1000lb" Quantity="1"/>
</Loadout>
<Loadout Name="(2)250lb Bombs+(1)500lb Bomb">
<Hardpoint ID="0" PylonType="pylon_Spit_c_0" PayloadType="B_500lb" Quantity="1"/>
<Hardpoint ID="1" PylonType="pylon_Spit_c_3" PayloadType="B_250lb" Quantity="1"/>
<Hardpoint ID="2" PylonType="pylon_Spit_c_4" PayloadType="B_250lb" Quantity="1"/>
</Loadout>
<Loadout Name="(8)Rockets">
<Hardpoint ID="1" PylonType="pylon_Spit_c_1" PayloadType="b_rocket" Quantity="15"/>
<Hardpoint ID="2" PylonType="pylon_Spit_c_2" PayloadType="b_rocket" Quantity="15"/>
</Loadout>
<Loadout Name="(8)Rockets+(1)250lb Bomb">
<Hardpoint ID="1" PylonType="pylon_Spit_c_1" PayloadType="b_rocket" Quantity="15"/>
<Hardpoint ID="2" PylonType="pylon_Spit_c_2" PayloadType="b_rocket" Quantity="15"/>
<Hardpoint ID="0" PylonType="pylon_Spit_c_0" PayloadType="B_250lb" Quantity="1"/>
</Loadout>
<Loadout Name="(8)Rockets+(1)45gal Drop Tank" MissionType="Search_Destroy,CAS,Anti_Ship">
<Hardpoint ID="1" PylonType="pylon_Spit_c_1" PayloadType="b_rocket" Quantity="15"/>
<Hardpoint ID="2" PylonType="pylon_Spit_c_2" PayloadType="b_rocket" Quantity="15"/>
<Hardpoint ID="0" PylonType="pylon_Spit_c_0" PayloadType="B_45gal_Alt2" Quantity="1"/>
</Loadout>
<Loadout Name="(1)250lb Bomb+(2)45gal Drop Tanks">
<Hardpoint ID="1" PylonType="pylon_Spit_c_3" PayloadType="B_45gal_Alt2" Quantity="1"/>
<Hardpoint ID="2" PylonType="pylon_Spit_c_4" PayloadType="B_45gal_Alt2" Quantity="1"/>
<Hardpoint ID="0" PylonType="pylon_Spit_c_0" PayloadType="B_250lb" Quantity="1"/>
</Loadout>
<Loadout Name="(1)500lb Bomb+(2)45gal Drop Tanks" MissionType="Strike">
<Hardpoint ID="1" PylonType="pylon_Spit_c_3" PayloadType="B_45gal_Alt2" Quantity="1"/>
<Hardpoint ID="2" PylonType="pylon_Spit_c_4" PayloadType="B_45gal_Alt2" Quantity="1"/>
<Hardpoint ID="0" PylonType="pylon_Spit_c_0" PayloadType="B_500lb" Quantity="1"/>
</Loadout>
<Loadout Name="(1)45gal Drop Tank">
<Hardpoint ID="0" PylonType="pylon_Spit_c_0" PayloadType="B_45gal_Alt1" Quantity="1"/>
</Loadout>
<Loadout Name="(2)45gal Drop Tanks" MissionType="Escort,CAP,Intercept,Sweep,Nothing,Bomber_Intercept">
<Hardpoint ID="1" PylonType="pylon_Spit_c_3" PayloadType="B_45gal_Alt2" Quantity="1"/>
<Hardpoint ID="2" PylonType="pylon_Spit_c_4" PayloadType="B_45gal_Alt2" Quantity="1"/>
</Loadout>
</Loadouts>
That is a bit unnecessary, so the trick is to make it a bit shorter:
<Loadouts>
<Loadout Name="Droptank">
<Hardpoint ID="0" PylonType="pylon_Spit_c_0" PayloadType="B_45gal_Alt2" Quantity="1"/>
</Loadout>
</Loadouts>
You'll note that I've removed everything, including the "clean" entry, and left only the single centreline droptank option (usually hardpoint 0.)
That means that it will always spawn with the droptank, which it will drop as soon as you have a go at it. But the pylon stays.
Now you need to clone the pylon in question, both the physical m3d and the corresponding xdp. Rename the new pylon pylon_Spit_c_0_AI.m3d, and the xdp to the same name. Open the xdp file with notepad and change the following:
<?xml version="1.0" encoding="utf-8"?>
<UnitData>
<General Allegience="" LongName="" ShortName="pylon_Spit_c_0" ModelName="pylon_Spit_c_0_AI.m3d" BlastDamageScale="1.0" ImpactDamageScale="1.0" FireDamageScale="1.0" Priority="2" Type="weapon" EnteredService="03/01/1943" BlastDamageMod="0" ImpactDamageMod="0" FireDamageMod="0" Category="weapon" Country="usa" AllowSpawn="n" Mass="1750">
</General>
Adjust the mass to suit the weight of the appropriate fuel load, etc.
Then go back to the AI aircraft xdp and alter the name of the pylon used.
<Loadouts>
<Loadout Name="Droptank">
<Hardpoint ID="0" PylonType="pylon_Spit_c_0_AI" PayloadType="B_45gal_Alt2" Quantity="1"/>
</Loadout>
</Loadouts>
Before anyone gets over-excited, I didn't think of this myself - it's the result of a great deal of though by many of the Desert Rats.
And if you can't get it to work, check and check and check, because 9 times out of 10, your syntax, etc, isn't correct. You'll be missing a tag or something in one of the xdp files.