Possibly your mission making ini might have got messed up some how, below is mine for comparison;
Code:
[builder_plugins]
(builder.PlMapLoad)
(builder.PlMission)
(builder.PlMisAir,sectFile=com/maddox/il2/objects/air.ini)
(builder.PlMisChief,sectFile=com/maddox/il2/objects/chief.ini)
(builder.PlMisStatic,sectFile=com/maddox/il2/objects/stationary.ini)
(builder.PlMisRocket,sectFile=com/maddox/il2/objects/rockets.ini)
(builder.PlMisHouse,sectFile=com/maddox/il2/objects/static.ini)
(builder.PlMisTarget)
(builder.PlMisBrief)
(builder.PlMisBorn)
(builder.PlMisStaticCamera)
(builder.PlMisDestruction)
(builder.PlMisFront)
[builder config]
bShowGrid true
bShowName true
bViewRunaway true
bShowTime true
bShowArmy [3,true,true,true]
iLightLand 255
iconSize 16
bViewBridge false
bAnimateCamera true
bActorOnLand true
bSaveViewHLand false
bShowLandscape true
iLightDestruction 255
iWaterLevel 191
I use 2 little batch files to switch between map and mission bldconf.ini files - saves any copy paste issues. The code above I save as bldconf_Orig.ini.
I save the code below as bldconf_Mod.ini;
Code:
[builder_plugins]
(builder.PlMapLoad)
(builder.PlMapActors,sectFile=com/maddox/il2/objects/static.ini)
(builder.PlMapAirdrome)
(builder.PlMapLabel)
(builder.PlMapText)
[builder config]
bShowGrid true
bShowName true
bViewRunaway true
bShowTime true
bShowArmy [3,true,true,true]
iLightLand 255
iconSize 16
bViewBridge false
bAnimateCamera true
bActorOnLand true
bSaveViewHLand false
bShowLandscape true
iLightDestruction 255
iWaterLevel 191
Now the batch files to switch - open notepad and paste this in and save it in your game root folder as bldconforig.bat - then right click and send shortcut to desktop. Rename desktop shortcut to Mission Making (or any name you want to )
Code:
@echo OFF
xcopy bldconf_Orig.ini bldconf.ini /Y
Start IL2fb.exe
exit
Same process for map making batch file;
Code:
@echo OFF
xcopy bldconf_Mod.ini bldconf.ini /Y
Start IL2fb.exe
exit
Save in game root folder as bldconfmap.bat, send shortcut to desktop and rename to Map Making (or name of your choice)
To start the game in map making mode double click the Map Making icon, and conversely to fire up in mission making mode double click the mission making icon.
Hope this helps
Cheers
Quelty